/* Kintoplay Auth Styles */
.kinto-auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 70vh;
    box-sizing: border-box;
}

.kinto-auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    color: #111827;
}

.kinto-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.kinto-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 30px;
}

.kinto-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-error {
    background: #fee2e2;
    color: #b91c1c;
    border-color: #fca5a5;
}

.alert-success {
    background: #d1fae5;
    color: #047857;
    border-color: #6ee7b7;
}

.alert-warning {
    background: #fef3c7;
    color: #b45309;
    border-color: #fcd34d;
}

.kinto-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.kinto-google-btn:hover {
    background: #f9fafb;
    text-decoration: none;
}

.kinto-google-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.kinto-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.kinto-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #e5e7eb;
    z-index: 1;
}

.kinto-divider span {
    background: #fff;
    padding: 0 16px;
    position: relative;
    z-index: 2;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.kinto-input-group {
    margin-bottom: 20px;
    text-align: left;
}

.kinto-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.kinto-input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.kinto-input-group input::placeholder {
    color: #9ca3af;
}

.kinto-input-group input:focus {
    outline: none;
    border-color: #3b41e3;
    box-shadow: 0 0 0 3px rgba(59, 65, 227, 0.1);
}

.kinto-pwd-wrapper {
    position: relative;
}

.pwd-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwd-toggle:hover {
    color: #6b7280;
}

.kinto-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.kinto-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
}

.kinto-remember input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}

.kinto-link {
    color: #424cf9;
    font-weight: 600;
    text-decoration: none;
}

.kinto-link:hover {
    text-decoration: underline;
}

.kinto-submit-btn {
    width: 100%;
    padding: 14px;
    background: #3b41e3;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.kinto-submit-btn:hover {
    background: #2f34b6;
}

.kinto-footer-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.kinto-footer-link a {
    color: #424cf9;
    font-weight: 600;
    text-decoration: none;
}

.kinto-footer-link a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .kinto-auth-card {
        border-radius: 16px;
        box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
        border: 1px solid #f3f4f6;
    }
}