@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*
{
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
}
section 
{
    background-color: #EC5228; 
    display: flex;
    height: 100vh;
    
}
.wrapper
{
    box-sizing: border-box;
    background-color: white;
    height: 100vh;
    width: max(60%, 600px);
    padding:10px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper h1
{
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}
form
{
    width: min(400px, 100%);
    margin-bottom: 50px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form > div 
{
    width: 100%;
    display: flex;
    justify-content: center;
}

form label 
{
  flex-shrink: 0;  
  height: 50px;
  width: 50px;
  background-color: #88CDFF;
  fill : black;
  color : black;
  border-radius: 30px 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.5rem;
  font-weight: 500;
}

form input 
{
   box-sizing: border-box;
   flex-grow: 1;
   min-width: 0;
   height: 50px;
   padding: 1em;
   font: inherit;
   background-color:#D9D9D9 ;
   border-radius: 0 30px 30px 0;
   border-left: none;
   border : none;
   transition: 150ms ease;
}

form button 
{
    margin-top: 10px;
    border: none;
    border-radius: 1000px;
    padding: .85em 4em;
    background-color: #88CDFF;
    font: inherit;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    cursor: pointer;
    transition: 150ms ease;
}
.test
{
    flex: 1; /* Prend l’espace restant */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
.test a
{
    margin-top: 10px;
    border: none;
    border-radius: 1000px;
    padding: .20em 1em;
    background-color: #88CDFF;
    text-decoration: none;
    font: inherit;
    font-weight: 400;
    color: black;
    cursor: pointer;
    transition: 150ms ease;
}
#nocolor
{
    background-color: white;
}
.test img
{
    margin-left: 50px;
    left: 153px;
    top: 140px;
    background: #D9D9D9;
    border-radius: 31px;

}