
body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.overlay-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #ffc11c;
    color: #484849;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.login-modal {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 350px;
    position: fixed;
    margin-left:10px;
}

h2 {
    color: #355da0;
    margin-bottom: 20px;
    text-align: center;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}


input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}


input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #417690;
    background-color: white;
}


button {
    border-radius:5px;
    width: 100%;
    padding: 12px;
    background-color: #ffc11c;
    color: #484849;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #355da0;
    color:#fff;
    border:1px solid #484849;
}

h1 {
    font-size: 28px;
}

.alert {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.alert-error, .alert-danger {
    color: red;
}
