





/* Input field */
.login-box input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    margin-bottom: 15px;
    outline: none;
    transition: all 0.2s ease;
}

/* Input focus effect */
.login-box input[type="password"]:focus {
    border-color: #456773;
    box-shadow: 0 0 0 3px #45677393;
}

/* Button */
.login-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #456773;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Button hover */
.login-box input[type="submit"]:hover {
    background: #456773;
    transform: translateY(-1px);
}

/* Button click */
.login-box input[type="submit"]:active {
    transform: translateY(0);
}

/* Optional error message */
.login-box .error-message {
    color: #a1271a;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Style for the input box */
.login-box input[type="password"],
.login-box input[type="submit"] {
    width: 100%; /* Make the input box take up the full width of its container */
    max-width: 400px; /* Set a maximum width for larger screens */
    min-width: 200px; /* Set a minimum width for smaller screens */
    padding: 10px; /* Add padding inside the input box */
    margin: 10px auto; /* Add spacing and center the input box */
    font-size: 1em; /* Adjust font size for readability */
    box-sizing: border-box; /* Include padding and border in the width calculation */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 5px; /* Add rounded corners */
}

/* Style for the submit button */
.login-box input[type="submit"] {
    background-color: #456773; /* Add a background color */
    color: white; /* Set text color */
    border: none; /* Remove border */
    cursor: pointer; /* Change cursor to pointer */
}

.login-box input[type="submit"]:hover {
    background-color: #5a7a8c; /* Change background color on hover */
}