/* Minimal custom styles - sadece login form için */

/* Body arka planı dark */
body {
    background: #1f2937 !important;
    min-height: 100vh;
}

/* Login form merkezde tutmak için */
.main-content {
    background: #1f2937;
    min-height: calc(100vh - 280px); /* Navbar ve footer için alan */
    padding: 120px 0 60px 0; /* Üst daha fazla, alt daha az - dengeleme */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-left: 4px solid #10b981;
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header h1 {
    color: #333333;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.login-header p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
    font-style: normal;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #006DAF;
    box-shadow: 0 0 0 3px rgba(0, 109, 175, 0.1);
}

#otp::placeholder {
    color: #d6dbdf;
    opacity: 0.8;
}

.btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
    margin-bottom: 10px;
}

.btn-primary {
    background: #006DAF;
    color: #ffffff;
}

.btn-primary:hover {
    background: #005ba1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 109, 175, 0.2);
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message {
    padding: 15px;
    border-radius: 0;
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    border-left: 4px solid #10b981;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Bölge seçiminin yazı fontunu küçült */
.region-select {
    font-size: 12px !important;
}

.region-select option {
    font-size: 12px !important;
}

@media (max-width: 576px) {
    .login-card {
        padding: 25px 20px;
    }
    .login-header h1 {
        font-size: 22px;
    }
}