.settings-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h2 {
    font-size: 18px;
    color: #262626;
}

label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #707579;
}

#formSettings {
    display: flex;
    flex-direction: column;
    /*gap: 12px;*/
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-radius: 8px;
}

input[type="text"],
input[type="password"] {
    flex: 1;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #229ed9;
    outline: none;
}

.error {
    color: #e64b33;
    font-size: 12px;
    margin-bottom: 8px;
}
.success {
    color: #4eaa2c;
    font-size: 12px;
    margin-bottom: 8px;
}
button {
    padding: 8px 12px;
    background: #229ed9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: #007acc;
}