/* login.css */

/* Bütün səhifənin fonu və fontu */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f5f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Form konteyneri */
.form-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(12, 56, 62, 0.15);
    padding: 32px 40px;
    width: 360px;
    text-align: center;
    position: relative;
}

/* Başlıq */
.form-container h2 {
    color: #0c383e; /* navbar rənginə uyğun */
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
    user-select: none;
}

/* Qeydiyyat linki */
.register-link {
    margin-bottom: 20px;
}

.register-link a {
    text-decoration: none;
    color: #0c383e;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #2e7d32; /* yaşıl vurğu rəngi */
}

/* Xəta mesajı */
.alert-error {
    background-color: #fddede;
    color: #b00020;
    border: 1px solid #e19a9a;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    user-select: none;
}

/* Form sahəsi */
.form-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Inputlar */
.form-box input[type="text"],
.form-box input[type="password"] {
    padding: 12px 14px;
    border: 2px solid #cfd8dc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline-offset: 2px;
}

.form-box input[type="text"]:focus,
.form-box input[type="password"]:focus {
    border-color: #0c383e; /* navbar rənginə uyğun vurğu */
    outline: none;
    box-shadow: 0 0 5px rgba(12, 56, 62, 0.3);
}

/* Placeholder ikonları üçün müvafiq padding */
.form-box input[type="text"]::placeholder,
.form-box input[type="password"]::placeholder {
    font-size: 14px;
    color: #999999;
}

/* Düymə */
.form-box button {
    background-color: #0c383e;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.form-box button:hover {
    background-color: #2e7d32; /* yaşıl vurğu */
}

/* Responsive üçün */
@media (max-width: 400px) {
    .form-container {
        width: 90%;
        padding: 24px 20px;
    }
}
.elanlar-button {
    display: inline-block;
    background-color: #00796b;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.elanlar-button:hover {
    background-color: #005f50;
}
