/* HUNT MASTER - Auth Page (THINK DESIGN Template) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(22, 33, 62, 0.5) 100%), url('hero.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
}

/* Header */
header {
    background: #1A1A2E;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.logo {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    font-weight: 300;
    margin-left: 0.2em;
}

/* Main */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 0;
}

.auth-container {
    width: 90%;
    max-width: 450px;
}

.auth-box {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.5em;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    font-size: 1.8em;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 0.3em;
    letter-spacing: 0.5px;
}

h1 span {
    font-weight: 300;
}

h2 {
    text-align: center;
    color: #666;
    margin-bottom: 1.5em;
    font-size: 1.1em;
    font-weight: 400;
}

.form-group {
    margin-bottom: 1.5em;
}

label {
    display: block;
    margin-bottom: 0.5em;
    color: #333;
    font-weight: 500;
    font-size: 0.9em;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #1A1A2E;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #1A1A2E;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary:hover {
    background: #2a2a3e;
}

.auth-links {
    margin-top: 1.5em;
    text-align: center;
}

.auth-links p {
    margin: 0.5em 0;
    color: #666;
    font-size: 0.9em;
}

.auth-links a {
    color: #1A1A2E;
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

small {
    display: block;
    margin-top: 0.3em;
    color: #999;
    font-size: 0.8em;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox label {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 400;
}

.checkbox input[type="checkbox"] {
    margin-right: 0.5em;
    width: auto;
}

/* Footer */
footer {
    background: #1A1A2E;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.7rem;
}

.copyright a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #E94560;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container,
    .footer-container {
        padding: 0 15px !important;
    }

    h1 {
        font-size: 1.5em;
    }

    .auth-box {
        padding: 2em;
    }
}
