
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}
.header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}
.login-card {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: white;
}
.form-control {
    width: 100%;
    padding: 10px 40px 10px 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #007bff;
    outline: none;
}
.custom{
    font-size: 1.2rem; /* Adjust font size as needed */

}
.btn-custom {
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-custom:hover {
    background-color: #004494;
}
.form-group small a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.form-group small a:hover {
    text-decoration: underline;
}
.input-group {
    position: relative;
}
.input-group .form-control {
    padding-left: 40px;
}
.input-group .input-group-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}
.footer {
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    color: #666;
}
.footer a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
