/* ===== LOGIN PAGE STYLES ===== */
body {
    font-family: Roboto, sans-serif !important;
    background-color: #f2f1ea !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 80vh !important;
    margin: 10px !important;
}
.login-container {
    background-color: #f5f5f5 !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    width: 85% !important;
    max-width: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
h1 {
    text-align: center !important;
    color: #111111 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 0.2rem !important;
    font-size: 32px !important;
}
form {
    display: flex !important;
    flex-direction: column !important;
}
label {
    margin-bottom: 0.5rem !important;
    color: #5f6368 !important;
}
input {
    padding: 0.5rem !important;
    margin-bottom: 1rem !important;
    border: 1px solid #dadce0 !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
}
button {
    background-color: #ba5b38 !important;
    color: white !important;
    padding: 0.75rem !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
}
button:hover {
    background-color: #ad5434 !important;
}
.error-message {
    color: #d93025 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}
.password-container {
    display: flex !important;
    align-items: center !important;
}
.password-container input {
    flex: 1 !important;
    width: 90% !important; /* Καλύπτει το 90% */
    padding-right: 40px !important; /* Για να μην επικαλύπτεται το κουμπί */
}
.toggle-password {
    width: 10% !important; /* Καλύπτει το 10% */
    padding: 0 !important;
    margin-left: 10px !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    color: #5f6368 !important;
    background-color: transparent !important;
    border: none !important;
}
.toggle-password:hover {
    background-color: transparent !important;
}
.spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
}