﻿/* =========================================
   SIKMART AUTHENTICATION PAGES
========================================= */

.auth-page {
    min-height: calc(100vh - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Header */

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

    .auth-header h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1f2937;
    }

    .auth-header p {
        margin: 0;
        font-size: 15px;
        color: #6b7280;
    }


/* Form Fields */

.auth-field {
    margin-bottom: 20px;
}

    .auth-field label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
        color: #374151;
    }

    .auth-field .form-control {
        width: 100%;
        height: 48px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 15px;
        transition: 0.2s ease;
    }

        .auth-field .form-control:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
            outline: none;
        }


/* Remember Me */

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

    .auth-options .form-check-label {
        font-size: 14px;
        color: #4b5563;
    }


/* Main Button */

.auth-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

    .auth-submit-btn:hover {
        background: #1d4ed8;
        transform: translateY(-1px);
    }


/* Validation */

.auth-validation {
    margin-bottom: 15px;
    font-size: 14px;
}


/* Divider */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    color: #9ca3af;
    font-size: 12px;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }


/* Footer */

.auth-footer {
    text-align: center;
}

    .auth-footer p {
        margin: 0;
        font-size: 14px;
        color: #6b7280;
    }

    .auth-footer a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

        .auth-footer a:hover {
            text-decoration: underline;
        }


/* Mobile */

@media (max-width: 576px) {

    .auth-page {
        padding: 30px 15px;
        align-items: flex-start;
    }

    .auth-card {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .auth-header h1 {
        font-size: 26px;
    }
}


.access-denied-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.access-denied-card {
    width: 100%;
    max-width: 550px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
    border: 1px solid #eeeeee;
}

.access-denied-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.access-denied-card h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.access-denied-message {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.access-denied-submessage {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.access-denied-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .access-denied-actions a {
        text-decoration: none;
        padding: 11px 22px;
        border-radius: 7px;
        font-weight: 600;
        transition: 0.2s ease;
    }

.btn-home {
    background: #0d6efd;
    color: #fff;
}

    .btn-home:hover {
        background: #0b5ed7;
        color: #fff;
    }

.btn-back {
    background: #f1f1f1;
    color: #333;
}

    .btn-back:hover {
        background: #e2e2e2;
        color: #222;
    }

@media (max-width: 576px) {
    .access-denied-card {
        padding: 35px 20px;
    }

        .access-denied-card h1 {
            font-size: 27px;
        }

    .access-denied-actions a {
        width: 100%;
    }
}

