:root {
    /* Neoflow theme colors */
    --primary-color: #065826ff;
    --secondary-color: #000000;
    --accent-color: #ffffff;
    --dark-green: #1a2e05;
    --light-green: #15b45dff;
    --green-gradient: linear-gradient(135deg, var(--primary-color), #3f8b59ff);
    --blended-gradient: linear-gradient(
        135deg,
        var(--dark-green),
        var(--secondary-color)
    );
    --card-gradient: linear-gradient(
        145deg,
        rgba(26, 46, 5, 0.9),
        rgba(0, 0, 0, 0.95)
    );
    --bg-gradient: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--dark-green)
    );
    --text-color: var(--accent-color);
    --input-bg: #f0f0f0ff;
    --input-border: #034b0cff;
    --input-focus-bg: rgba(26, 46, 5, 0.8);
    --alert-bg: rgba(195, 231, 33, 0.1);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(195, 231, 33, 0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.registration-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.registration-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-header {
    background: var(--green-gradient);
    padding: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.registration-header h1 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.registration-header p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.registration-body {
    display: flex;
    flex-wrap: wrap;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-options label {
    color: var(--text-color);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-options a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-options a:hover {
    text-decoration: underline;
}

.btn-login {
    background: var(--green-gradient);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 95, 47, 0.3);
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(9, 66, 26, 0.5);
}

.register-link {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    text-decoration: underline;
}
.form-section,
.info-section {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.form-section {
    border-right: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group span {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 50%;
}

.form-top i {
    height: 50px;
    width: 50px;
    padding: 16px 16px;
    background-color: var(--input-bg);
    border-radius: 50%;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-control {
    background: var(--input-bg);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    color: #000000;
    /* Changed to white text */
    padding: 15px 20px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    background: var(--input-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(122, 122, 121, 0.25);
    outline: none;
    color: #1b1a1abb;
    /* Ensure text stays white on focus */
}

.form-control::placeholder {
    color: rgba(114, 112, 112, 0.5);
}

.form-icon {
    position: absolute;
    top: 43px;
    right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Password toggle styles */
.password-toggle {
    position: absolute;
    top: 43px;
    right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--light-green);
}

.btn-register {
    background: var(--green-gradient);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(9, 109, 67, 0.41);
    margin-top: 10px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(8, 70, 41, 0.5);
}

.login-link {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.info-section h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(195, 231, 33, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(195, 231, 33, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon {
    background: var(--green-gradient);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.alert {
    background: var(--alert-bg);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

/* Success Message Styles */
.success-container {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #4ade80;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.8;
}

.countdown {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 20px;
}

.countdown span {
    font-weight: 700;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-card {
        max-width: 100%;
        margin: 10px;
    }

    .registration-header h1 {
        font-size: 2rem;
    }

    .form-section,
    .info-section {
        padding: 30px 20px;
    }

    .form-section {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
}
