body {
    font-family: Verdana, Geneva, Arial, sans-serif;
    overflow-x: hidden;
}

main {
    overflow: hidden;
    border: 1px solid #A8A8A8;
    border-radius: 10px;
    padding: 20px;
    justify-content: space-around;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}
.banner-image {
    width: 35%;
    height: auto;
}
.login-section {
    color: #404040;
    width: 40%;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E5E5E5));
    height: auto;
}
.signin-heading {
    font-weight: bold;
    font-size: 18px;
}
form {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 20px;

}
form input {
    margin-left: 3%;
    width: 60%;
}
form button {
    color: white;
    font-size: 14px;
    font-weight: bold;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3d94f6), color-stop(1, #104dae) );
    border: none;
    padding: 7px;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 7px;
    text-align: right;
    cursor: pointer;
}

.forgot-password{
    font-size: 16px;
    color: #2276d7;
    cursor: pointer;
}




footer {
    margin-top: 25px;
    background-color: #404040;
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
}



@media (max-width: 768px) {
    .banner-image {
        width: 50%;
    }
    .login-section {
        width: 70%;
    }
    form label {
        font-size: 10px;
    }
    form input {
        width: 50%;
    }
    .forgot-password {
        font-size: 14px;
    }
}

@media (max-width: 480px ) {
    .banner-image {
        width: 50%;
    }
    .login-section {
        width: 60%;
    }
    form {
        scale: 0.8;
    }
    form label {
        font-size: 10px;
    }
    form input {
        width: 40%;
    }
    .forgot-password {
        font-size: 10px;
    }
}

