/* Authentication Pages Styles */
/* Used by login, password reset, and related authentication pages */

/* Common body styling for all auth pages */
body {
    background-color: #f5f5f5;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Logo positioning in top right */
.auth-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.auth-logo img {
    height: 60px;
    width: auto;
}

/* Container styles - shared for all auth page containers */
.login-container,
.reset-container,
.message-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Login page has a slightly narrower container */
.login-container {
    max-width: 400px;
}

/* Message containers are center-aligned */
.message-container {
    text-align: center;
}

/* Heading styles - shared for all auth page headings */
.login-heading,
.reset-heading,
.message-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Login heading has more bottom margin */
.login-heading {
    margin-bottom: 30px;
}

/* Success message heading (password reset complete) */
.message-heading {
    color: #5cb85c;
}

/* Form styling */
.form-group {
    margin-bottom: 20px;
}

.btn-primary {
    width: 100%;
    padding: 10px;
}

/* Message container buttons don't span full width */
.message-container .btn-primary {
    width: auto;
    margin-top: 20px;
}

/* Alert styling */
.alert {
    margin-bottom: 20px;
}

/* Help text */
.help-block {
    color: #737373;
    font-size: 13px;
}

/* Link sections */
.forgot-password,
.back-link {
    text-align: center;
    margin-top: 20px;
}
