body{
    background-color: rgba(0, 0, 0, 0.897);
    font-family: sans-serif;
    font-size: 15px;
}
/* Container */
.login-container {
    top: 0%;
    bottom: 0%;
    right: 0%;
    left: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    position: fixed;
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Heading */
.login-box h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

input:focus {
    border-color: #18191a8a;
    outline: none;
}

/* Button */
.btn-login {    
    width: 100%;
    padding: 10px;
    background-color: #1f2429;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #606367;
}

/* Footer */
.form-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-footer a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Error Messages */
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}
