/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(to right, #2c3e50, #3498db);
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    position: relative;
    margin-left: 20px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease, background 0.3s ease;
}

.main-nav a:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background: #34495e;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #3498db;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* User Profile Dropdown */
.user-profile-wrapper {
    position: relative;
}

.user-icon {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.user-icon:hover {
    color: #ffd700;
}

.user-dropdown {
    right: 0;
    left: auto;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-right: 15px;
}

.mobile-nav {
    display: none;
    background: #2c3e50;
    padding: 15px 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin: 10px 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
}

.mobile-nav a:hover {
    background: #3498db;
    border-radius: 5px;
}

.dropdown-content-mobile {
    display: none;
    background: #34495e;
    padding: 10px 0;
    margin-left: 15px;
}

.dropdown-content-mobile a {
    font-size: 14px;
}


.content-wrapper {
    padding: 100px 15px 50px;
    min-height: calc(100vh - 60px);
}


.form-container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    outline: none;
}

.form-submit button {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
.membership-field {
    margin: 1.5rem 0;
}

.membership-field label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
}

.membership-field div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.membership-field input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}


@media (max-width: 768px) {
    .main-nav,
    .user-profile-wrapper {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: block;
    }

    .header-content {
        padding: 10px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: 100%;
    }

    .content-wrapper {
        padding: 80px 10px 40px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
    }

    .form-submit button {
        font-size: 14px;
    }
}

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