/* Reset some default styles */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-size: cover;
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    min-height: 100vh; /* Ensure the page takes at least the full viewport height */
    
}

/* Login box styling */
.login-box {
    width: 280px;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: #191970;
}

/* Title styling */
.login-box h1 {
    font-size: 40px;
    border-bottom: 4px solid #191970;
    margin-bottom: 20px;
    padding: 13px;
}

/* Textbox styling */
.textbox {
    width: 100%;
    overflow: hidden;
    font-size: 20px;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: 1px solid #191970;
}

.fa {
    width: px; /* Remove this line, it's not needed */
    float: left; /* Remove this line, it's not needed */
    text-align: center; /* Remove this line, it's not needed */
}

.textbox input {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    margin: 0 10px;
    width: 80%; /* Adjust the input width */
    padding: 5px; /* Adjust padding for better appearance */
}

/* Button styling */
.button {
    width: 100%;
    padding: 12px;
    background-color: #191970;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px; /* Add margin to separate from textboxes */
}

