body {
    font-family: 'Quicksand', Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    background-color: #121212;
    color: #969292;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
}

.logo {
    width: 350px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group input:focus {
    border-color: #135130;
    box-shadow: 0 0 5px rgba(19, 81, 48, 0.5);
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    font-size: 14px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #fff;
    outline: none;
}

.input-group input:focus {
    outline: none;
    border-color: #00a950;
}

.btn {
    background-color: #00a950;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.btn:hover {
    background-color: rgb(61, 146, 65);
}

.hidden {
    display: none;
}

#caps-lock-warning {
    color: #ff5722;
    font-size: 12px;
}

input:-webkit-autofill {
    background-color: #333 !important;
    color: #ccc !important;
    box-shadow: 0 0 0px 1000px #333 inset !important;
    border: 1px solid #555;
}

input:-webkit-autofill::first-line {
    color: #ccc !important;
}

input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    background-color: #444 !important;
    color: #ccc !important;
    box-shadow: 0 0 0px 1000px #444 inset !important;
}

.dropdown-button {
    background-color: #343434;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    cursor: pointer;
    z-index: 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-button:hover {
    background-color: #444444;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-button:active {
    background-color: #555555;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}