/* style/login.css */

/* General page styles */
.page-login {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #ffffff; /* Explicitly set for clarity, though body is usually white */
}

.page-login__section {
    padding: 60px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-login__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-login__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-login__section-intro {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-login__sub-title {
    font-size: 24px;
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-login__keyword {
    color: #26A9E0;
    font-weight: bold;
}

/* Hero Section */
.page-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
    box-shadow: none; /* No shadow for hero */
}

.page-login__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-login__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-login__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-login__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-login__main-title {
    font-size: 48px;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-login__intro-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #444444;
}

/* Login Form */
.page-login__form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.page-login__login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-login__form-group {
    margin-bottom: 15px;
}

.page-login__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
}

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__form-input:focus {
    border-color: #26A9E0;
    box-shadow: 0 0 0 3px rgba(38, 169, 224, 0.2);
    outline: none;
}

.page-login__form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin-top: -5px;
    margin-bottom: 10px;
}

.page-login__remember-me {
    color: #555555;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.page-login__remember-me input {
    margin-right: 8px;
}

.page-login__forgot-password {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-login__forgot-password:hover {
    color: #1a7fb8;
    text-decoration: underline;
}

.page-login__btn-submit {
    display: inline-block;
    width: 100%;
    padding: 15px 25px;
    background: #EA7C07; /* Custom color for Login button */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.page-login__btn-submit:hover {
    background: #d46b06;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login__register-prompt {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
    color: #555555;
}

.page-login__register-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}