body {
    font-family: Inter, Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

.auth-container {
    max-width: 420px;
    margin: 20px auto 80px;
    padding: 30px;
    background: #020617;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.auth-container h1 {
    text-align: center;
    margin-bottom: 25px;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: none;
    background: #020617;
    border: 1px solid #334155;
    color: #fff;
    box-sizing: border-box;
}

.auth-container button {
    width: 100%;
    padding: 12px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.auth-container button:hover {
    background: #16a34a;
}

.error {
    background: #7f1d1d;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.success {
    background: #14532d;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.link {
    text-align: center;
    margin-top: 15px;
}

.link a {
    color: #22c55e;
    text-decoration: none;
}


.lang-switch-cont{
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 40px 0 0;
}

.lang-switch-block{
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 20px;
}

.lang-switch{
    text-transform: uppercase;
    padding: 12px;
    color: #22c55e;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: .4s all ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

.lang-switch:hover{
    color: #000;
    background: #22c55e;
}

.lang-switch.active{
    pointer-events: none;
    background: #22c55e;
    color: #000;
}