.login-container {
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-top: 4px solid #22c55e;
}

.login-card h1 {
    text-align: center;
    color: #15803d;
    margin-bottom: 10px;
}

.login-card p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #22c55e;
    color: white;
    font-weight: 600;
}

.login-btn:hover {
    background: #15803d;
}

/* ALERTS */
.alert {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
}

.alert-success {
    background: #f0fdf4;
    color: #15803d;
}

.alert-warning {
    background: #fffbeb;
    color: #b45309;
}

.register-link {
    margin-top: 20px;
    text-align: center;
    color: #6b7280;
}

.register-link a {
    color: #15803d;
    font-weight: 600;
    text-decoration: none;
}
.request-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 35px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.request-container h1 {
    margin-bottom: 12px;
    color: #15803d;
    font-size: 34px;
    text-align: center;
}

.request-container p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-control {
    width: 100%;
    min-height: 150px;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    resize: vertical;
    font-size: 15px;
    transition: .25s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #22c55e;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.btn-submit:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.alert-warning {
    background: #fef9c3;
    border: 1px solid #fde047;
    color: #854d0e;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.info-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
    line-height: 1.6;
}
.request-box{
    margin:28px 0 12px;
    padding:22px;
    background:#f0fdf4;
    border:1px solid #bbf7d0;
    border-radius:14px;
}

.request-box h3{
    margin:0 0 10px;
    color:#15803d;
    font-size:20px;
}

.request-text{
    margin-bottom:18px;
    color:#4b5563;
    line-height:1.6;
    font-size:15px;
}

.request-box textarea{
    width:100%;
    min-height:110px;
    padding:12px;
    border:1px solid #d1d5db;
    border-radius:10px;
    resize:vertical;
    font-size:15px;
    transition:.2s;
}

.request-box textarea:focus{
    outline:none;
    border-color:#22c55e;
    box-shadow:0 0 0 3px rgba(34,197,94,.15);
}