body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 80px 15px 40px;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 14px;
    color: #777;
}

/* Login Section */
.login-section {
    display: flex;
    justify-content: center;
    padding: 40px 15px 100px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    border: 1px solid #eee;
    padding: 35px;
}

.login-box h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 5px;
}

.sub-text {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #c9a14a;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 11px;
    background: #657184;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-login:hover {
    background: #657184;
}

.extra-links {
    text-align: center;
    margin-top: 15px;
}

.extra-links a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
}
