/* Center form fields with high specificity */
form table {
    margin-top: 40px !important;
    margin: 5px auto; /* Horizontally centers the table */
    border-collapse: collapse; /* Optional for cleaner look */
}

th {
    padding-bottom: 10px !important;
    padding-right: 15px !important;
    margin: auto;
}

td {
    padding-bottom: 10px !important;
}

input[type="text"], input[type="password"] {
    width: 300px;
    height: 40px;
    padding-left: 10px;
    border-radius: 10px;
    border-color: #4da6ff !important;
}

/* Media query for mobile phones (max-width: 767px) */
@media (max-width: 767px) {
    input[type="text"], input[type="password"] {
        width: 170px;
    }
}

input[name="token-remember"] {
    display: none !important;
}


label[for="id_token-remember"] {
    display: none !important;
}



button {
    border-radius: 100px !important;
    width: 100px !important;
    margin-left: 20px !important;
}

/* h1 {
    color: #4da6ff !important;
} */