:root {
    --primary-color: #105b2f;
    --secondary-color: #105b2f;
    --dark-bg: #105b2f;
    --card-bg: #105b2f;
    --text-color: #105b2f;
    --input-bg: #105b2f;
    --border-color: #105b2f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(1, 124, 38, 0.3);
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 255, 255);
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 700;
}

h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #105b2f;
    font-size: 0.95rem;
}

label i {
    margin-left: 8px;
    color: var(--primary-color);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(255, 255, 255);
}

select {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        font-size: 2rem;
    }
}