body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    color: #333;
}

.form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left; 
}

h2 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #45a049;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.message-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;

    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

button[type="submit"] {
    padding: 0.5rem 1.5rem;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    width: 100%; 
    margin-top: 1rem;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

form p {
    margin-bottom: 1rem;
}

form input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 0.5rem;
    box-sizing: border-box; 
}

a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.light-green{
    background-color: #7DBF96 !important;
}

.btn-green{
    background-color: #2A7A62 !important;
    border-radius: 25px !important;
    height: 40px !important;
}

.btn-green:hover {
    color: #fff !important;
    background-color: #4b9400 !important;
    border-color: #448700 !important;
}

.logo-padding{
   padding-bottom: 20px;
   text-align: center;
}

.login-fields{
    border:0px !important;
    padding:0 !important;
    display:block;
    width: 100%;
}

.login-fields .login-input {
    width: 100%;
    margin-left: 0; 
    box-sizing: border-box; 
    height: 100%;
    display: block;
}

.background {
    background-image: url('/static/assets/images/login/image.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    width: 100%; 
    height: 100vh; 
    background-attachment: fixed;
}

.container-display{
    display: flex;
    justify-content: flex-start;
  }
  
.form-styling{
    margin-left: 10%; 
    width: 100%;
    max-width: 321.5px; 
}

.round-border{
    border-radius: 10px;
}

body{
    overflow: hidden;
}

@media (max-width: 1024px) {
    .form-styling{
        margin:0 auto; 
        width: 90%;
      }
}
