/* Page Background */

body {
    background: #f4f6f9;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Login Form */

#loginform {
    width: 380px;
    margin: 80px auto;
    padding: 30px;

    background: #ffffff;
    border-radius: 0;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Heading */

.heading {
    text-align: center;
    color: #063970;
    font-weight: 700;
    margin-bottom: 5px;
}

.sub-heading {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
}

/* Labels */

#loginform label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

/* Inputs */

#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;

    border: 1px solid #ced4da;
    border-radius: 0;

    font-size: 15px;
    transition: all 0.3s ease;
}

#loginform input:focus {
    outline: none;
    border-color: #0d6efd;

    box-shadow: 0 0 5px rgba(13, 110, 253, 0.25);
}

/* Buttons */

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.submit,
.reset {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 0;
    cursor: pointer;

    font-weight: 600;
    transition: 0.3s;
}

.submit {
    background: #0d6efd;
    color: #fff;
}

.submit:hover {
    background: #0b5ed7;
}

.reset {
    background: #6c757d;
    color: #fff;
}

.reset:hover {
    background: #5c636a;
}

/* Login Message */

#login-message {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* Error Message */

.error {
    color: #dc3545;
    font-weight: 600;
}

/* Success Message */

.success {
    color: #198754;
    font-weight: 600;
}