.messages {
    position: fixed; 
    top: 20px;       
    right: 20px;      
    z-index: 1000;    
    list-style: none; 
    padding: 0;       
    margin: 0;       
}

.messages li {
    margin-bottom: 10px; 
    background-color: #4CAF50; 
    color: white; 
    padding: 15px;
    border-radius: 5px;
}

.close {
    cursor: pointer; 
    padding-left: 10px;
    color: white; 
    font-weight: bold; 
    float: right; 
}

.close:hover {
    color: #ffdddd; 
}

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

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

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

.login-fields .login-input {
    width: 100%; 
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
    box-sizing: border-box; 
    padding: 10px; 
    display: block; 
    border-radius:7px;
    height: 100%;
}

.white-link {
    color: white;
    text-decoration: underline; 
}

.white-link:hover {
    color: #ccc; 
    text-decoration: underline;
}

.logo-padding{
    padding-bottom: 50px;
}

.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;
}

body{
    overflow: hidden;
}

.container-display{
    display: inline-table;
  }
  
  .form-styling{
    margin-left: 10%; 
    width: 100%; 
    max-width: 375px; 
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
    display: grid;
    justify-content: center; 
  }

@media (max-width: 1024px) {
    .container-display {
        display: block; 
    }

    .form-styling{
        margin:0 auto; 
        width: 90%;
        display:block;
        justify-content:center;
      }
}