body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url("../img/background-opacified.png");
    background-repeat: no-repeat;
    background-size: cover;
    
}


.login-container {
    background: #fff;
    padding: 3em; /* Increased padding */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px; /* Adjust width as needed */
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form .form-group {
    margin-bottom: 20px; /* Increased spacing */
}

.login-form .form-group label {
    display: block;
    margin-bottom: 5px;
}

.login-form .form-group input,
.login-form .form-group input {
    width: 90%;
    padding: 15px; /* Increased padding */
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1.1rem; /* Increased font size */
}

input:focus{
    outline: 1px solid #17a635 ;       
  }

.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-header{
    text-align: center;
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
}

.login-form .checkbox-group .forgot-password {
    color: #17a635;
    text-decoration: none;
}

.login-form button {
    text-align: center;
    padding: 15px 20px; /* Increased padding */
    border: none;
    border-radius: 4px;
    background-color: #17a635;
    color: white;
    font-size: 1.1rem; /* Increased font size */
    cursor: pointer;
    margin-top: 10px; /* Added space above the button */
}

.login-form button:hover {
    background-color: #17a636a9;
}

.logo {
    display: block;
    margin: 0 auto 30px auto; /* Increased margin */
    border-radius: 50%;

    max-width: 150px; /* Increased logo size */
}
