2025-06-13 19:18:31 -03:00
|
|
|
.settings-form {
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 25px;
|
|
|
|
|
min-width: 300px;
|
2025-10-27 12:51:50 -03:00
|
|
|
background: rgba(40, 40, 40, 0.9);
|
|
|
|
|
border: 1px solid rgba(100, 100, 100, 0.3);
|
2025-06-13 19:18:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-form .form-group {
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-form input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
box-sizing: border-box;
|
2025-10-27 12:51:50 -03:00
|
|
|
border: 1px solid #404040;
|
|
|
|
|
background: #2a2a2a;
|
|
|
|
|
color: #e0e0e0;
|
2025-06-13 19:18:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-form input::placeholder {
|
2025-10-27 12:51:50 -03:00
|
|
|
color: rgba(160, 160, 160, 0.8);
|
2025-06-13 19:18:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-form input:focus {
|
|
|
|
|
outline: none;
|
2025-10-27 12:51:50 -03:00
|
|
|
border-color: #6B8DD6;
|
2025-06-13 19:18:31 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
color: white;
|
2025-10-27 12:51:50 -03:00
|
|
|
background: #6B8DD6;
|
|
|
|
|
border: 1px solid #6B8DD6;
|
2025-06-13 19:18:31 -03:00
|
|
|
border-radius: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-btn:hover {
|
2025-10-27 12:51:50 -03:00
|
|
|
background: #5A7BC4;
|
|
|
|
|
border: 1px solid #5A7BC4;
|
2025-06-13 19:18:31 -03:00
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|