/* Google sign-in and consent checkbox controls shared by Login and Register. */

.login-socials {
    display: flex;
    justify-content: center;
    margin: 10px 0 0;
}

.google-auth-button {
    display: flex;
    justify-content: center;
    width: min(100%, 240px);
    min-height: 44px;
}

.login-social-button {
    width: min(100%, 240px);
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #221813;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}
.login-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: -4px;
    color: #9eb0c7;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
}

.login-remember input {
    appearance: none;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 2px solid #3a322f;
    border-radius: 4px;
    background: #191615;
    box-shadow: inset 0 0 0 2px #191615;
}

.login-remember input:checked {
    background: #f25a00;
}
