

.body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    #margin: 5px 5px 0px 5px;
}


.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.login-logo {
    width: 100%;
    text-align: center;
}

.h2center {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}


.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-size: 1.1rem
}
h1 {
    font-size: 2.35rem;
    margin-bottom: 0.5rem;
}


h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
p {
    margin-bottom: 1.1rem;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    #font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.form-group button {
    width: 100%;
    padding: 0.8rem;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-group button:hover {
    background-color: #0056b3;
}

.message {
    color: green;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 8rem;
}

.error-message {
    color: red;
    font-size: 0.9rem;
    text-align: center;
    margin-top: .8rem;
    margin-bottom: .1rem
}

.password-wrapper {
    position: relative;
    width: 100%;
}

/* Style the SVG icons */
.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
}

/* Make sure the input field leaves space for the icon */
input[type="password"], input[type="text"] {
    padding-right: 30px; /* Space for the eye icon */
    width: 100%;
}

.footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

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