/* Login page */
.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f7f7f8;
    padding: 2rem;
    font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0 0 2rem 0;
    text-align: center;
    color: #222;
}

.ronin-logo-login {
    display: block;
    width: auto;
    height: 180px;
    margin-bottom: 1rem;
}

.login-form {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Login card (used by Event/Location selection) */
.login-container {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    flex-grow: 1;
    width: 100%;
}

.login-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}

.login-label {
    font-weight: 600;
    font-size: 1.0rem;
    margin-bottom: .25rem;
    color: #333;
    text-align: left;
}

.login-field-group {
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    height: 3.5rem;
    font-size: 1.3rem;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.login-input:focus {
    outline: none;
    border-color: #ff3c1f;
    box-shadow: 0 0 0 2px rgba(255, 60, 31, 0.25);
}

.login-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid #ccc;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' stroke='%23666' stroke-width='15' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.login-select:hover {
    border-color: #ff3c1f;
    box-shadow: 0 0 0 2px rgba(255, 60, 31, 0.1);
}

.login-select:focus {
    outline: none;
    border-color: #ff3c1f;
    box-shadow: 0 0 0 2px rgba(255, 60, 31, 0.25);
}

.signin-button {
    width: 100%;
    padding: 1.2rem 1rem;
    font-weight: bold;
    font-size: 1.05rem;
    background-color: #ff3c1f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.signin-button:hover {
    background-color: #d12f16;
}

.signin-button:disabled {
    background-color: #e0e0e0;
    color: #888;
    cursor: not-allowed;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.support-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.support-text b {
    color: #ff3c1f;
    cursor: pointer;
}
