.container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-items: flex-start;
    height: 100vh; /* Full viewport height */
    background-color: #f5f5f5; /* Background color */
}

.login-box {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}




/* Styles of the messages */
/* This CSS selector targets any HTML element that has both the messages and warning classes applied to it. */

/* General styles for all messages */
.messages {
    list-style-type: none;  /* Remove bullet points */
    padding: 0;
    margin: 20px 0;
}

.messages li {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/*------------- VEIKIANTYS -------------*/

/* Success messages */
.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Error messages */
.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    text-align: center;
}

/* Warning messages */
.warning {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    text-align: center;
}

/* Info messages */
.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    text-align: center;
}
