body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    font-weight: bold;
}

form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    padding: 20px;
    max-width: 400px;
    margin: 50px auto;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 12px;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

input[type="text"],
input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-size: 16px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    button:hover {
        background-color: #0069d9;
    }


.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
}


.slogan_text {
    font-size: 15px;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: rgb(81, 96, 171);
    letter-spacing: 1px;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.dialog {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hidden {
    display: none;
}
