html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login-page {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure the body takes up at least the full height of the viewport */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form input styles */
.login-page:input[type="text"],
.login-page:input[type="email"],
.login-page:input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.mybut:hover {
    background-color: #64c2ee;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* Label styles */
label {
    font-weight: bold;
}

/* Align labels to the left within the form */
.container form {
    text-align: center;
}

.container form label {
    display: block;
    text-align: left;
}

/* Error message styles */
.error {
    color: #FF0000;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

#mes {
    text-align: center;
    border: none;
    height: 30px; 
    line-height: 30px;  
    padding-left: 10px; 
    padding-right: 10px;
    width: 500px;
    background-color: transparent;
}

#menu {
    padding-right: 0;
    background-color: #005981; 
    flex-shrink: 0;
}

/* CSS for the logo */
.logo {
    max-width: 100%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}

.main-logo {
    width: 50%;    
}

.message {
    text-align: center; 
    margin-top: 10px; 
}

/* Media query for adjusting logo size on smaller screens */
@media (max-width: 768px) {
    .logo {
        max-width: 70%; 
    }

    input[type="text"],
    input[type="password"] {
        font-size: 14px; 
    }
}

@media (max-width: 576px) {
    /* Additional adjustments for smaller screens */
    .logo {
        max-width: 80%; 
    }

}

/* CSS for login form */
.container {
    max-width: 400px; 
    margin: 0 auto; 
    padding: 20px;
    background-color: #fff;
}

#buttonContainer {
    margin-top: 20px; 
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

.add-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0; 
    width: 100%;
}

