body {
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-position: center;
 
    background-size: 101vw 101vh; 

    margin: 0;
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
}


body::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0), #21aff7);
   z-index: -1;
}

.form-container {

   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   width: 90%;

   z-index: 1;
}

.no-account-register, 
.forgot-password, 
.remember-me-checkbox, 
.flag-container, 
.flag-image 
{
    display: none !important;
}


.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #0056b3;
}