/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

/* Header */
.brand-header {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.brand-header h1 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 4px;
}

.brand-header p {
    margin: 5px 0 0 0;
    font-size: 9px;
    letter-spacing: 6px;
}

/* Layout */
.login-main {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.login-box {
    width: 100%;
    max-width: 480px;
    border: 1px solid #333;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.login-box h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Form Styling */
.form-group {
    text-align: left;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.required {
    color: #ff004d;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 8px; /* Rounded corners per image */
    box-sizing: border-box;
    font-size: 14px;
}

/* Forget Password Link */
.forgot-password {
    text-align: right;
    margin-top: 5px;
}

.forgot-password a {
    font-size: 9px;
    color: #666;
    text-decoration: none;
    font-weight: bold;
}

/* Buttons */
.btn-login {
    width: 100%;
    background-color: #ff004d;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #e20045;
}

/* Bottom Links */
.signup-prompt {
    margin: 20px 0;
    font-size: 11px;
    color: #333;
}

.signup-prompt a {
    color: #2563eb;
    text-decoration: none;
}

/* Google Sign-In */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    padding: 8px;
    border: 1px solid #888;
    border-radius: 6px;
    background: white;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.btn-google img {
    width: 18px;
    height: 18px;
}