* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d3d3d3;
}

.auth-logo {
    text-align: center;
    margin-bottom: 22px;
}

.auth-card {
    width: 450px;
    background: rgba(240, 240, 240, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Language switcher on auth page */
.auth-card .lang-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.switch {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.switch-btn {
    flex: 1;
    border: none;
    background: white;
    color: #333;
    padding: 12px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.25s;
}

.switch-btn.active {
    background: #1e90ff;
    color: white;
}

.form-container {
    display: none;
}

.form-container.active-form {
    display: block;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
    font-size: 28px;
}

p {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #1e90ff;
}

.primary-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #1e90ff;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.primary-btn:hover {
    background: #1877d9;
}

.link-btn {
    width: 100%;
    border: none;
    background: none;
    margin-top: 12px;
    color: #1e90ff;
    cursor: pointer;
    font-size: 14px;
}

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