.auth-container {
    width: 446px;
    padding: 10px;
    margin: 0 auto;
}

@media(max-width: 456px) {
    .auth-container {
        width: 100%;
    }
}

.login-card {
    margin-top: 25px;
    background-color: #F4FBF5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #d1e7dd;
}

.header {
    text-align: center;
    margin-bottom: 24px;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 8px;
}

.header p {
    font-size: 14px;
    color: #6c757d;
}

.tabs {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
}

.tab {
    flex: 1;
    padding: 8px 16px;
    border: none;
    background: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tab.active {
    background: white;
    color: #2d5a3d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tab.kumppani.active {
    background: #7cb342;
    color: white;
}

.tab:not(.active) {
    color: #6c757d;
}

.description {
    text-align: center;
    font-size: 14px;
    color: #2d5a3d;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2d5a3d;
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1e7dd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #7cb342;
    box-shadow: 0 0 0 2px rgba(124, 179, 66, 0.1);
}

.login-button {
    width: 100%;
    padding: 12px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.login-button:hover {
    background: var(--green-hover);
}

.footer {
    text-align: center;
    margin-top: 24px;
}

.footer p {
    font-size: 12px;
    color: #6c757d;
}

.footer .brand {
    color: #7cb342;
    font-weight: 500;
}