body {
    background-image: url(images/bg-intro-desktop.png);
    background-color: rgb(246, 110, 110);
    color:white;   
    font-family: Poppins;
}

.flex-container {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
    
}

.flex-item1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 400px;
    padding:100px;
   
    font-size: 1.5em; 
    
}

.flex-right {
    padding: 20px;
}
.flex-item2 {
    border: 2px solid;
    border-radius: 5px;
    background: blue;
    width: 100%;
    align-items: center;
    text-align: center;

}
.flex-item3 {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 500px;
    padding-top:50px;
    margin: auto;
    font-size: 1.5em; 
    
}

.form{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 450px;
    height: 550px;

}

.checkbox {
    color: black;
    font-size: small;
}



input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 10px;
    align-items: center;
    
}

.btn {
    background-color: green;
    border: 2px solid;
    border-radius: 10px;
    width: 100%;
    height: 50px;
    color: white;
}

.error {
    display: flex;
    justify-content: flex-end;
    color: red;
    font-size: 0.5em;
    margin-bottom: 10px;
}


@media only screen and (max-width:375px){
    .flex-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .flex-item1 {
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 200px;
        padding:20px;
        margin: 20px;
        font-size: 1em; 
        
    }

    .flex-right {
        padding: 10px;
        width: 100%;
    }
    .flex-item2 {
        border: 2px solid;
        border-radius: 5px;
        background: blue;
        width: 100%;
        align-items: center;
        text-align: center;
        margin-right: 30px;
        
    
    }
    .flex-item3 {
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 400px;
        width:338px;
        padding-top:20px;
        font-size: 1em; 
        
    }
    .form {
        background-color: white;
        border-radius: 10px;
        width: 300px;
        height: 360px;
        align-items: center;
        margin: auto;
    
    }
    
    
    .form-group {
        width: 100%;
    }
    
    input {
        width: 100%;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 20px;
        align-items: center;
        
    }
    
}



