@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&family=Varela+Round&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #0d80b7;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.img {
    position: relative;
    width: 60%;
    height: 100%;

}

img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100%;

}

.form {
    width: 70%;
}

h1 {
    /* color:#0d80b7 ; */
    /* #607d8b;*/
    font-weight: 600;
    font-size: 3em;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    /* border-bottom: 4px solid #ff4584  ;     */
    /*  #ff4584;     #337ab7      */
    /* display: inline-block; */
    letter-spacing: 1px;
    text-align: center;

}

label {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 5px;

}

input {
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;
    /* color: #607d8b; */
    background: transparent;
    border-radius: 30px;
}

input[type="checkbox"] {
    display: inline-block;
    width: auto;
}

button {
    background: #3f87a7;
    /*   #ff4584 ;       #3c8dbc*/
    color: #fff;
    outline: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;

    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;

}

button:hover {
    background: #41afe0;
    /* #f53677;       #337ab7   */
}
span{
    color: red;
}
.remember {
    margin-bottom: 20px;
    margin-top: 20px;
    /* color: #607d86; */
    font-weight: 400;
    font-size: 14px;
}

@media(max-width:768px) {
    section .img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    section .content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    section .content .form {
        width: 100%;
        padding: 40px;
        background: rgb(255 255 255 /0.9);
        margin: 50px;
    }
}