        :root {
            --primary-color: #035a31;
            --primary-light: #057943;
            --primary-dark: #024023;
            --secondary-color: #ffd482;
            --dark-color: #2d3134;
            --light-color: #f8f9fa;
        }

        body {
            background: linear-gradient(135deg, #e8f5e9 0%, #b9f6ca 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .auth-container {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 500px;
            width: 100%;
            margin: 20px auto;
        }

        .auth-header {
            background: var(--primary-color);
            color: white;
            padding: 25px;
            text-align: center;
        }

        .auth-body {
            padding: 30px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .logo-text {
            font-size: 28px;
            font-weight: bold;
            color: white;
            margin-left: 12px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .page-title {
            color: white;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 22px;
        }

        .page-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .form-control {
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(3, 90, 49, 0.25);
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .input-group {
            border-radius: 10px;
        }

        .input-group .form-control {
            border-radius: 10px 0 0 10px;
        }

        .input-group .btn {
            border-radius: 0 10px 10px 0;
            border: 1px solid #ddd;
            border-left: none;
            background: white;
            color: #6c757d;
        }

        .input-group .btn:hover {
            background: #f8f9fa;
            color: var(--primary-color);
        }

        .password-strength {
            margin-top: 10px;
        }

        .progress {
            height: 8px;
            border-radius: 4px;
            margin-bottom: 5px;
        }

        .password-strength-text {
            font-size: 12px;
            font-weight: 500;
        }

        .password-requirements {
            font-size: 12px;
            color: #6c757d;
            margin-top: 5px;
        }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 14px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(3, 90, 49, 0.3);
        }

        .footer {
            text-align: center;
            margin-top: 25px;
            color: #6c757d;
            font-size: 13px;
            padding: 15px;
            border-top: 1px solid #eee;
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .terms-link {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
        }

        .terms-link:hover {
            text-decoration: underline;
        }

        .login-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }

        .login-link:hover {
            text-decoration: underline;
        }