/* Reset CSS cho trang auth */
body.page-template-auth * {
    box-sizing: border-box;
}
.profile-content .player-header {
    width: 100% !important;
}
.player-header__options, .referee-header__options, .staff-header__options {
    grid-template-columns: minmax(16rem, auto) 1fr !important;
}
@media screen and (max-width: 768px) {
    .player-header__options, .referee-header__options, .staff-header__options {
        grid-template-columns: minmax(13rem, auto) 1fr !important;
    }
}
body.page-template-auth {
    background-color: #fff8f5;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
    margin: 0;
}

body.page-template-auth .entry-title {
    display: none;
}

body.page-template-auth .entry-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Container */
body.page-template-auth .auth-container {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Logo */
body.page-template-auth .auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

body.page-template-auth .auth-logo img {
    max-width: 200px;
    height: auto;
}

/* Form Styles */
body.page-template-auth .auth-form {
    padding: 10px;
}

body.page-template-auth .form-group {
    margin-bottom: 20px;
}

body.page-template-auth .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

body.page-template-auth .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

body.page-template-auth .form-control:focus {
    border-color: #f15b2e;
    outline: none;
}

/* Button Styles */
body.page-template-auth .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f15b2e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

body.page-template-auth .btn:hover {
    background-color: #e04a1c;
}

/* Message Styles */
body.page-template-auth .message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

body.page-template-auth .message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

body.page-template-auth .message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Links */
body.page-template-auth .auth-links {
    text-align: center;
    margin-top: 20px;
}

body.page-template-auth .auth-links a {
    color: #f15b2e;
    text-decoration: none;
    transition: color 0.3s;
}

body.page-template-auth .auth-links a:hover {
    color: #e04a1c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.page-template-auth .auth-container {
        margin: 20px;
        padding: 15px;
    }

    body.page-template-auth .auth-logo img {
        max-width: 150px;
    }

    body.page-template-auth .form-control {
        padding: 10px;
    }

    body.page-template-auth .btn {
        padding: 10px 20px;
    }
}

/* Loading State */
body.page-template-auth .loading {
    position: relative;
    pointer-events: none;
}

body.page-template-auth .loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.page-template-auth .auth-container {
    animation: fadeIn 0.5s ease-in-out;
} 