/* Authentication Page Styles */

body {
    height: auto !important;
    min-height: 100vh;
    overflow: auto !important;
    display: block !important;
}

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: #0f0f0f;
    padding: 20px 0;
    box-sizing: border-box;
}

.auth-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.auth-container h1 {
    color: #4fc3f7;
    margin-bottom: 10px;
    text-align: center;
}

.auth-container p {
    color: #888;
    text-align: center;
    margin-bottom: 30px;
}

.auth-container section {
    margin-bottom: 20px;
}

.auth-container label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    background: #252525;
    border: 1px solid #444;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 14px;
    box-sizing: border-box;
}

.auth-container input:focus {
    outline: none;
    border-color: #4fc3f7;
}

.auth-container .error-message {
    color: #ff5252;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.auth-container .error-message.show {
    display: block;
}

.auth-container .success-message {
    color: #4caf50;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.auth-container .success-message.show {
    display: block;
}

.auth-container button {
    width: 100%;
    padding: 12px;
    background: #4fc3f7;
    border: none;
    border-radius: 4px;
    color: #0f0f0f;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-sizing: border-box;
}

.auth-container button:hover {
    background: #3fa8cc;
}

.auth-container button:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.auth-container .link-text {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.auth-container .link-text a {
    color: #4fc3f7;
    text-decoration: none;
}

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