@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary-blue: #0E03BB;
    --primary-purple: #6100FF;
    /* More vibrant purple like in image */
    --accent-purple: #7B48FF;
    --bg-light: #E4E3FF;
    --form-bg: #FFFFFF;
    --input-bg: #F8F9FA;
    --text-dark: #041C28;
    --text-muted: #929292;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --navy-blue: #03045E;
    --link-blue: #2309FF;
    --bg-gradient:#4C1D95;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

.registration-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    /* width: 48%; */
    flex: 1;
    /* Adjusting width to match balance */
    background-color: var(--bg-gradient);
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: var(--white);
    min-height: 100vh;
}

.sidebar-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgleft.png');
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.sidebar-content {
    position: relative;
    z-index: 2;
}

.sidebar-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 500px;
}

.sidebar-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.sidebar-subtitle b {
    font-weight: 800;
}

.sidebar-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 450px;
    opacity: 0.9;
}

.sidebar-illustration {
    position: relative;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.sidebar-illustration img {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
}

.sidebar-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.back-to-site {
    display: inline-flex;
    align-items: center;
    color: var(--navy-blue);
    background-color: #f2f5f9;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    padding: 8px 25px;
    border-radius: 20px;
    gap: 10px;
    width: fit-content;
}

.back-to-site::after {
    content: "↗";
    font-size: 1.2rem;
}

.powered-by {
    font-size: 1.1rem;
    font-weight: 300;
}

.powered-by b {
    font-weight: 700;
}

/* Form Area Styling */
.form-area {

    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    width: 100%;
    max-width: 650px;
    margin-bottom: 30px;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4C1D95;
    /* Deep purple for title */
}

/* Card Styling */
.registration-card {
    background-color: var(--form-bg);
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
/* 
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex; 
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    background-color: #F6F6F6;
    border: none;
    border-radius: 12px;

    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    color: #333;
}

.form-control::placeholder {
    color: #999;
    font-size: 0.85rem;
} */

/* Radio Group styling */
.org-type-group {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.org-type-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.radio-options {
  /*  display: flex; */
    gap: 30px;
}

.radio-item {
  /*  display: flex; */
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-item.active .radio-circle {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.radio-item.active .radio-circle::after {
    content: "✓";
    color: white;
    font-size: 10px;
}

/* Date input icon */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Custom Select styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
}

.select-wrapper::after {
    content: "⌵";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* File Upload */
.file-upload {
    background-color: #F0F0F0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    height: 45px;
}

.file-upload span {
    color: #666;
    font-size: 0.85rem;
}

.file-upload .upload-arrow {
    color: #999;
}

/* Footer elements */
.form-footer {
    grid-column: span 2;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-verification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.verify-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.verify-info p {
    font-size: 0.8rem;
    color: #666;
}

.req-otp-btn {
    border: 1px solid #6100FF;
    background: none;
    color: #6100FF;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #6100FF;
}

.terms-check input {
    accent-color: var(--accent-purple);
}

.register-btn {
    background-color: #041C28;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #4C1D95!important;
}

/* Sign In card */
.signin-card {
    background-color: white;
    width: 100%;
    max-width: 650px;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.signin-card a {
    color: #6100FF;
    font-weight: 700;
    text-decoration: none;
}

/* Decoration triangles for right side */
.decoration-triangles {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    z-index: -1;
}

@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }

    .registration-container {
        flex-direction: column;
    }

    .sidebar,
    .form-area {
        width: 100%;
        min-height: auto;
    }

    .sidebar {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .sidebar-title {
        font-size: 2.2rem;
        margin: 0 auto 15px;
    }

    .sidebar-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .sidebar-description {
        margin: 0 auto;
    }

    .sidebar-illustration {
        margin: 20px 0;
    }

    .sidebar-illustration img {
        max-width: 300px;
    }

    .form-area {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .org-type-group,
    .form-footer {
        grid-column: span 1;
    }

    .form-header h1 {
        font-size: 2rem;
        text-align: center;
    }

    .registration-card {
        padding: 25px 20px;
    }

    .email-verification {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sidebar-title {
        font-size: 1.8rem;
    }

    .radio-options {
        flex-direction: column;
        gap: 10px;
    }
}

.dl, ol, ul {
    margin-bottom: 0px!important;
}

.adjustment
{
    padding: 0px!important;
    height: fit-content!important;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: var(--navbar-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px!important;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    text-align: center;
    background-color: #4C1D95!important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logos img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-only {
    display: none;
}


/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

