﻿.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #f7f8fa;
    font-family: 'Cairo', sans-serif;
}

.auth-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 14px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.auth-title {
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 1.7rem;
    color: #0074d9;
    font-weight: bold;
}

.auth-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.05rem;
    background-color: #fdfdfd;
    color: #333;
    box-sizing: border-box;
}

.auth-btn-green {
    background-color: orangered;
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .auth-btn-green:hover {
        background-color: #218838;
    }


.auth-link {
    display: block;
    margin-top: 1rem;
    text-align: center;
    color: #007bff;
    font-size: 1rem;
    text-decoration: none;
}

    .auth-link:hover {
        text-decoration: underline;
    }

.form-error {
    color: #d9534f;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.auth-label {
    font-weight: bold;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 1rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}


.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 5rem;
}

.text-muted {
    color: #6c757d;
}

.logout-container {
    text-align: center;
    margin-top: 150px;
    padding: 20px;
}

.logout-button {
    background-color: #007bff;
    border: none;
    padding: 12px 30px;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

    .logout-button:hover {
        background-color: #0056b3;
    }

.back-link {
    margin-top: 15px;
    font-size: 15px;
    color: #333;
}
