* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f7f7f7;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* ========= BACKGROUND CIRCLES ========= */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 170, 240, 0.15);
}

.c1 {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -120px;
}

.c2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -120px;
}

.c3 {
    width: 120px;
    height: 120px;
    top: 50px;
    right: 150px;
}

.c4 {
    width: 370px;
    height: 370px;
    top: 320px;
    right: 650px;
}

.c5 {
    width: 200px;
    height: 200px;
    top: 60px;
    right: 200px;
}

.c6 {
    width: 200px;
    height: 200px;
    top: 450px;
    right: 1300px;
}

/* ========= BRAND ========= */
.brand {
    position: absolute;
    top: 90px;
    left: 90px;
    text-align: center;
}

.brand img {
    width: 100px;
}

.brand h2 {
    color: #0080d7;
    font-style: italic;
}

.brand p {
    font-size: 14px;
}

/* ========= GLASS FORGOT CARD ========= */
.glass-forgot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    outline: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.18),
        inset 0 0 25px rgba(255, 255, 255, 0.12);
    z-index: 20;
}

.glass-forgot h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.subtitle {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
}

/* ========= INPUT ========= */
.input-group {
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    height: 48px;
    border-radius: 25px;
    border: 2px solid #4aa3df;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    background: rgba(255, 255, 255, 0.7);
}

/* ========= BOTTOM ========= */
.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.continue-btn {
    background: #031a8d;
    color: white;
    border: none;
    padding: 10px 35px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}