
html,
body {
    font-family: 'Cairo', sans-serif !important;
    background: linear-gradient(90deg, #fff, #c0e3e8);

}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */

}


.screen {
    background: linear-gradient(90deg, #639ca4, #c0e3e8);
    position: relative;
    height: 600px;
    width: 600px;
    box-shadow: 0px 0px 24px #519ea9;
}

.screen__content {
    z-index: 1;
    position: relative;
    height: 100%;
}

.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 600px;
    width: 600px;
    background: #FFF;
    top: -20px;
    right: 200px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: #70b2bb;
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(270deg, #519ea9, #639ca4);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: #70b2bb;
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

.login {
    width: 350px;
    padding: 20px;
    padding-top: 156px;
}

.login__field {
    padding: 20px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 33px;
    padding-left: 5px;
    color: #519ea9;
}

.login__input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px;
    padding-left: 28px;
    font-weight: 500;
    width: 100%;
    transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
    outline: none;

    border-bottom-color: #519ea9;
}





.cssbuttons-io-button {
    background: #519ea9;
    color: white;
    font-family: inherit;
    margin-top: 30px;

    padding: 0.35em;
    padding-left: 0.5em;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    cursor: pointer;
    width: 80%;
}

#loginButton {
    width: 50%;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #519ea9;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #519ea9;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

.forgot-password {
    display: block;
    margin-top: -12px;
    /* Adjust spacing */
    text-align: right;
    /* Align to right */
    font-size: 14px;
    color: #519ea9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #417e89;
    text-decoration: underline;
}

.login-div,
.password-reset-div {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hide {
    opacity: 0;
    transform: translateX(20px);
    /* Move the element 20px to the right when hiding */
}

.buttons-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* Adjust space between buttons */
}
