
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;600;700&display=swap');

.fbody {
    margin: 0;
    font-family: 'Overpass', sans-serif;
    background: url('https://recap.narravoxai.com/assets/images/background.jpg') no-repeat center center;
    background-size: cover; /* make sure it covers the screen */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 0; 
}
body {
    margin: 0;
    font-family: 'Overpass', sans-serif;
    background: #1D2026;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 0; 
}
.fbody::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 4, 32, 0.75);
    z-index: 1;
}

.register-container {
    width: 90%;
    max-width: 450px;
    margin: 60px auto;
    background: rgba(30, 20, 55, 0.1);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #333;
    animation: floatLeft 1s ease-out forwards;
    opacity: 0; 
    transform: translateY(30px);
    position: relative;
    z-index: 2; 
}

@keyframes floatLeft {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}


.rlheading {
    text-align: center;
    color: #3B82F6;
    font-size: 28px;
    margin-bottom: 8px;
}
.sub-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 15px;
}
.register-form label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(30, 20, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    position: relative;
}

.input-group i {
    color: #3B82F6;
    font-size: 15px;
    margin-right: 10px;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.eye-toggle {
    position: absolute;
    right: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #3B82F6;
}

.signup-btn {
    width: 100%;
    margin: 40px auto 15px auto;
    padding: 12px;
    display: block;
    background: #3B82F6;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}
.signup-btn:hover {
    background: #2563EB;
}
.login-text {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
}

.login-text a {
    color: #3B82F6;
    font-weight: bold;
}

@media (max-width: 768px) {
    body { padding: 20px; }
    .register-container { max-width: 350px; }
}