body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
}

.auth-bg-wrapper {
    background: linear-gradient(to bottom, #49D1D9 62%, #E0FBFC 62%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 10px;
    left: 70px;
    font-family: 'Pacifico', cursive;
    font-size: 35px;
    color: white;
    letter-spacing: 1px;
}

.logo-sight {
    color: #151B8D;
}

.forgot-card {
    background: white;
    padding: 60px 40px; 
    width: 100%;
    max-width: 420px; 
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.forgot-card h2 {
    font-size: 22px;
    font-weight: 800; 
    margin: 0 0 8px 0;
    color: #000;
}

.forgot-card p {
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}

.forgot-card input {
    width: 100%;
    box-sizing: border-box; 
    padding: 12px 15px;
    margin-bottom: 30px; 
    border: 1px solid #E0E0E0; 
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.btn-continue {
    background: #151B8D; 
    color: white;
    border: none;
    width: 100%;
    max-width: 200px;
    height: 48px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 18px; 
    cursor: pointer;
    margin-bottom: 15px;
}

.btn-back {
    background: #49D1D9; 
    color: #000;
    border: none;
    width: 100%;
    max-width: 240px;
    height: 48px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 18px; 
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-continue:hover, .btn-back:hover {
    opacity: 0.9;
}