﻿.login-switch {
    display: flex;
    background: #f5f5f9;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 30px;
    gap: 6px;
}

.login-tab {
    flex: 1;
    border: none;
    background: transparent;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    transition: .25s;
    color: #697a8d;
}

    .login-tab.active {
        background: white;
        color: #696cff;
        box-shadow: 0 2px 10px rgba(0,0,0,.08);
    }

    .login-tab:hover {
        background: white;
    }
