/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
img {
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.center-text {
            text-align: center;
        }
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}
h2 {
     text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}
.input-group {
    margin-bottom: 15px;
    text-align: center;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #555555;
}
button {
    width: 25%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #198e94;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.button-container {
    width: 100%;
    padding:5px;
    border:none;
    background-color: #198e94;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

}
form {
    display: flex;
}
input[type="text"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
}
button:hover {
    background-color: #198e94;
}
h1 {
     text-align: center;
    margin: 0;
    color: #FF0000; /* Different text color for header */
}

main {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-container {
    text-align: center;
    margin-top: 20px; /* Adjust as needed */
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border: 2px solid #333; /* Optional: adds a border to the image */
    border-radius: 10px; /* Optional: rounds the corners of the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}
.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
	img:hover {
    transform: scale(1.2);
}
}

  height: 100vh;
}

.image-table {
    border-collapse: collapse;
}

.image-table td {
    padding: 40px;
    text-align: center;
}

.image-table img {
    width: auto; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease;
}

.image-table img:hover {
    transform: scale(1.2); /* Slightly enlarge on hover */
}

footer {
    margin-top: auto;
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media li {
    display: inline-block;
}

.social-media a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
    transition: transform 0.3s;
}

.social-media a.facebook {
    background-image: url('icons/facebook.png');
}

.social-media a.twitter {
    background-image: url('icons/twitter.png');
}

.social-media a.instagram {
    background-image: url('icons/instagram.png');
}

.social-media a.linkedin {
    background-image: url('icons/linkedin.png');
}

.social-media a:hover {
    transform: scale(1.2);
}

/* Add the social media links in the footer using :before */
footer::before {
    content: "";
    display: block;
    height: 50px; /* Adjust based on the height of your icons */
}

footer::after {
    content: "";
    display: flex;
    justify-content: center;
}

footer::after {
    content: attr(data-content);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

footer[data-content=""]::after {
    content: '';
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer[data-content=""]::after {
    content: '';
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

footer[data-content=""]::after {
    content: '';
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer::after a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
    transition: transform 0.3s;
}

footer::after a.facebook {
    background-image: url('icons/facebook.png');
}

footer::after a.twitter {
    background-image: url('icons/twitter.png');
}

footer::after a.instagram {
    background-image: url('icons/instagram.png');
}

footer::after a.linkedin {
    background-image: url('icons/linkedin.png');
}
@media (max-width: 767px) {
    img {
        /* Add any specific styles for small devices here */
        width: 100%;
    }
}

/* Adjustments for devices with width between 768px and 1024px (e.g., tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
    img {
        /* Add any specific styles for tablets here */
        width: 100%;
    }
}

