body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(96, 208, 172, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(18, 18, 24, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(96, 208, 172, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.form-control, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(96, 208, 172, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(30, 30, 40, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #e0e0e0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.form-control:focus, .form-select:focus {
    border-color: #60d0ac;
    box-shadow: 0 0 0 3px rgba(96, 208, 172, 0.2), inset 0 2px 4px rgba(0,0,0,0.1);
    outline: none;
    background-color: rgba(30, 30, 40, 0.6);
}

.form-control::placeholder {
    color: #777;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(96, 208, 172, 0.9), rgba(76, 184, 150, 0.9));
    color: #ffffff;
    border: 1px solid rgba(96, 208, 172, 0.3);
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(96, 208, 172, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(96, 208, 172, 1), rgba(76, 184, 150, 1));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(96, 208, 172, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #ff6b6b;
}

.form-icon {
    color: #60d0ac;
    margin-right: 0.5rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(30, 138, 98, 0.8) 0%, rgba(11, 61, 52, 0.8) 100%);
    padding: 6rem 0 8rem;
    margin-bottom: -4rem;
    position: relative;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(96, 208, 172, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to bottom right, transparent 49%, #0a0a0a 50%);
}

.hero-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(96, 208, 172, 0.15);
    filter: blur(40px);
    z-index: -1;
}

.hero-glow-1 {
    top: 20%;
    left: 15%;
}

.hero-glow-2 {
    bottom: 30%;
    right: 10%;
    background: rgba(30, 58, 138, 0.15);
    width: 200px;
    height: 200px;
}