.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 1.5rem;
}

.login-card {
    background: #13110e;
    border: 1px solid #2b2620;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f0a868;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.brand__icon {
    width: 36px;
    height: 36px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    display: inline-block;
}

.brand__name {
    background: linear-gradient(135deg, #f0a868 0%, #d4873a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    color: #9e9487;
    font-size: 0.9rem;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b0a69a;
}

.form-input {
    background: #14120f;
    border: 1px solid #2b2620;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    color: #f0ece4;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: #7a7267;
}

.form-input:focus {
    outline: none;
    border-color: #f0a868;
}

.form-error {
    background: rgba(191, 54, 12, 0.15);
    border: 1px solid #bf360c;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    color: #ffab91;
    font-size: 0.85rem;
    text-align: center;
}

.btn {
    background: #1a1714;
    border: 1px solid #3b342c;
    color: #f0ece4;
    padding: 0.6rem 1.25rem;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
}

.btn-primary {
    background: #f0a868;
    border-color: #f0a868;
    color: #0b0b0b;
}

.btn-primary:hover {
    background: #ffbe7a;
    border-color: #ffbe7a;
    transform: scale(1.02);
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #23201b;
}

.login-help {
    color: #7a7267;
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.75rem 1.25rem;
    }
    
    .login-brand {
        font-size: 1.25rem;
    }
    
    .brand__icon {
        width: 28px;
        height: 28px;
    }
}