/* ============================================
   COMPONENT: LOGIN COMPONENT
   Namespacing: .c-login-component
   ============================================ */

.c-login-component {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.c-login-component__header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.c-login-component__title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.c-login-component__subtitle {
    font-family: var(--font-secondary);
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Utils */
.c-login-component__extra {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.c-login-component__forgot {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

.c-login-component__forgot:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.c-login-component__submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.c-login-component__submit:hover {
    background: #2c2d54;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 33, 61, 0.2);
}

.c-login-component__submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.c-login-component__footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.c-login-component__register-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.c-login-component__register-link:hover {
    text-decoration: underline;
}

.c-login-component__resend {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--secondary-color);
    cursor: pointer;
    text-decoration: underline;
}
