/* General body styling for the entire page */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    
    /* Background image and styling for a more aesthetic look */
    background-image: url('../assets/Ic1340.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    
    /* Text styles for readability over the dark background */
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
}

/* Styles for the main content container, like a login box */
.main-content-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Styles for a separate login container (if needed) */
.login-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
}

/* Header styles for a container at the top of the page */
.header-container {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

/* Heading styles */
h1 {
    color: #ffffff;
}

h2 {
    text-align: center;
    color: #333;
}

/* Form element styles */
.error-message {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"], 
input[type="password"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Image button styles */
.btn-img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

.btn-img img {
    width: 400px;
    height: 200px;
    vertical-align: middle;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.btn-img img:hover {
    transform: scale(1.05);
}
