
body{
    background: rgb(14,19,102);
    background: linear-gradient(90deg, rgba(14,19,102,1) 0%, rgba(29,64,200,1) 100%);
}
.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
    width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 30px;
}
.password-wrapper{
    position: relative;
}
#password{
    padding-right: 25px;
}
.captcha-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
}
#eye-icon{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
