/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #5e90e17b;
    margin: 0;
    padding: 0;
}


.logo-container {
    text-align: center;
}

.logo-container img {
    width: 100px;
    height: 100px;
}

.container {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 2px 4px 4px 4px #186bbd3b;
}

h2 {
    text-align: center;
    color: #333;
}

/* Responsive styling for h2 */
@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.2em; /* Further adjust font size for even smaller screens */
    }
}



form {
    text-align: center;
}

input[type="text"],
input[type="password"],
select {
    width: 70%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 40%;
    padding: 10px;
    margin-top: 10px;
    background-color: #1974cf;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #2169bb;
}
