
    /* Dark theme with dark green gradient and animations */
    .wr-main-section {
        background: linear-gradient(135deg, #0a1929 0%, #1a3a4a 100%);
        min-height: 100vh;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: rgba(15, 35, 45, 0.95);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(76, 175, 80, 0.2);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .form-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    }

    .form-header h3 {
        color: #a8e6cf;
        font-size: 28px;
        margin-bottom: 10px;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .form-header p {
        color: #81c784;
        font-size: 16px;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        color: #a8e6cf;
        border-left: 4px solid #4caf50;
        padding-left: 15px;
        margin: 40px 0 20px 0;
        font-weight: 600;
        text-transform: uppercase;
        font-style: italic;
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #c8e6c9;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #2c5d44;
        border-radius: 6px;
        font-size: 15px;
        transition: all 0.3s;
        box-sizing: border-box;
        background-color: rgba(20, 40, 35, 0.7);
        color: #ffffff;
    }

    .form-control:focus {
        border-color: #4caf50;
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
        outline: none;
        background-color: rgba(30, 50, 40, 0.9);
        transform: scale(1.02);
    }

    .form-control::placeholder {
        color: #81c784;
    }

    .wr-select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #2c5d44;
        border-radius: 6px;
        background-color: rgba(20, 40, 35, 0.7);
        font-size: 15px;
        transition: all 0.3s;
        box-sizing: border-box;
        color: #ffffff;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
    }

    .wr-select:focus {
        border-color: #4caf50;
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
        outline: none;
        background-color: rgba(30, 50, 40, 0.9);
        transform: scale(1.02);
    }

    .form-control[type="datetime-local"] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #2c5d44;
        border-radius: 6px;
        font-size: 15px;
        transition: all 0.3s;
        box-sizing: border-box;
        background-color: rgba(20, 40, 35, 0.7);
        color: #ffffff;
    }

    .form-control[type="datetime-local"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
    }

    .form-check {
        display: inline-block;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .form-check-input {
        margin-right: 8px;
        accent-color: #4caf50;
    }

    .form-check-label {
        color: #c8e6c9;
        font-size: 14px;
    }

    .character-counter {
        font-size: 12px;
        color: #81c784;
        margin-top: 5px;
    }

    .btn-submit {
        background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        width: 100%;
        margin-top: 20px;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        background: linear-gradient(135deg, #66bb6a 0%, #388e3c 100%);
    }

    .btn-submit:active {
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    }

    .btn-submit:disabled {
        background: #4e6e58;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .debug-info {
        margin-top: 20px;
        padding: 15px;
        border-radius: 6px;
        display: none;
    }

    .debug-loading {
        color: #81c784;
        text-align: center;
    }

    .debug-success {
        color: #81c784;
        background: rgba(46, 125, 50, 0.2);
        border: 1px solid #2e7d32;
        border-radius: 6px;
        padding: 15px;
        text-align: center;
    }

    .debug-error {
        color: #ff8a80;
        background: rgba(211, 47, 47, 0.2);
        border: 1px solid #d32f2f;
        border-radius: 6px;
        padding: 15px;
        text-align: center;
    }

    .required {
        color: #ff8a80;
    }

    #password-requirements {
        display: block;
        color: #81c784;
        font-size: 12px;
        margin-top: 5px;
        font-style: italic;
    }

    @media (max-width: 768px) {
        .form-container {
            padding: 20px;
            margin: 10px;
        }
        
        .form-header h3 {
            font-size: 24px;
        }
        
        .form-check {
            display: block;
            margin-bottom: 10px;
        }
    }

    @media (max-width: 480px) {
        .form-container {
            padding: 15px;
        }
        
        .form-header h3 {
            font-size: 20px;
        }
        
        .section-title {
            font-size: 18px;
        }
        
        .btn-submit {
            padding: 12px 20px;
            font-size: 14px;
        }
    }

