body {
    background: radial-gradient(circle at 10% 15%, #e8f3ff 0, transparent 30%), radial-gradient(circle at 90% 85%, #eef6ff 0, transparent 28%), #f8fafc
}

.forgot-container {
    width: min(100%, 1000px);
    min-height: calc(100vh - 76px);
    margin: auto;
    padding: 55px 20px;
    display: grid;
    place-items: center
}

.forgot-box {
    width: 100%;
    max-width: 470px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
    padding: 42px;
    position: relative;
    overflow: hidden
}

.forgot-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a66c2, #38bdf8)
}

.forgot-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid #dbeafe;
    border-radius: 15px;
    background: #eff6ff;
    color: #0a66c2;
    display: grid;
    place-items: center;
    font-size: 19px
}

.forgot-header {
    margin-bottom: 28px
}

.forgot-header h1 {
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -.04em;
    color: #102033;
    margin-bottom: 10px
}

.forgot-header p {
    font-size: 12px;
    line-height: 1.7;
    color: #64748b
}

.input-box {
    margin-bottom: 18px
}

.input-box label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 8px
}

.input-wrapper {
    position: relative
}

.input-wrapper>i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
    transition: color .2s
}

.input-wrapper input {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 42px;
    border: 1px solid #dbe3ed;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    outline: 0;
    font-size: 12px;
    transition: border-color .2s, box-shadow .2s
}

.input-wrapper input::placeholder {
    color: #94a3b8
}

.input-wrapper input:hover {
    border-color: #c5d2e0
}

.input-wrapper input:focus {
    border-color: #0a66c2;
    box-shadow: 0 0 0 4px rgba(10, 102, 194, .09)
}

.input-wrapper:focus-within>i {
    color: #0a66c2
}

.alert-message {
    padding: 13px 15px;
    margin-bottom: 18px;
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.6
}

.alert-message p {
    margin: 0
}

.forgot-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a66c2, #0875d1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(10, 102, 194, .2);
    transition: transform .2s, box-shadow .2s, background .2s
}

.forgot-btn i {
    font-size: 11px;
    transition: transform .2s
}

.forgot-btn:hover {
    background: linear-gradient(135deg, #004182, #075ca8);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(10, 102, 194, .25)
}

.forgot-btn:hover i {
    transform: translateX(3px)
}

.forgot-btn:active {
    transform: translateY(0)
}

.back-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s
}

.back-login i {
    font-size: 10px
}

.back-login:hover {
    color: #0a66c2
}

@media(max-width:650px) {
    .forgot-container {
        min-height: calc(100vh - 68px);
        padding: 35px 15px
    }

    .forgot-box {
        padding: 30px 21px;
        border-radius: 18px
    }

    .forgot-header h1 {
        font-size: 26px
    }
}

@media(max-width:400px) {
    .forgot-container {
        padding: 25px 12px
    }

    .forgot-box {
        padding: 27px 17px
    }

    .forgot-header h1 {
        font-size: 24px
    }

    .input-wrapper input,
    .forgot-btn {
        height: 47px
    }
}

