.nm-auth-container {
    max-width: 480px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(113, 9, 122, 0.08);
    border: 1px solid rgba(113, 9, 122, 0.05);
    font-family: 'Tsukimi Rounded', 'Roboto Slab', sans-serif;
}

.nm-auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #F1EDF5;
    padding-bottom: 10px;
}

.nm-auth-tabs .tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #8C8295;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -13px;
}

.nm-auth-tabs .tab-btn:hover {
    color: #71097A;
}

.nm-auth-tabs .tab-btn.active {
    color: #71097A;
    border-color: #71097A;
}

.nm-auth-view {
    display: none;
}

.nm-auth-view.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.nm-auth-form-row {
    margin-bottom: 20px;
}

.nm-auth-form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4A3E56;
}

.nm-auth-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2D9E8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #FAFAFC;
    box-sizing: border-box;
}

.nm-auth-input:focus {
    border-color: #71097A;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(113, 9, 122, 0.1);
    outline: none;
}

.nm-auth-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.nm-auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nm-auth-switch-link {
    color: #71097A;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nm-auth-switch-link:hover {
    opacity: 0.8;
}

.nm-auth-btn {
    width: 100%;
    padding: 14px;
    background: #71097A;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.3s ease;
    text-align: center;
}

.nm-auth-btn:hover {
    filter: brightness(1.1);
}

.nm-auth-btn:active {
    transform: scale(0.98);
}

.g-recaptcha-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.nm-auth-lead {
    font-size: 14px;
    color: #6B5E77;
    line-height: 1.6;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
