body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    box-sizing: border-box;
    flex-direction: row;
}

.slider-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 100%; 
    height: 100%;
    animation: pulse 4s ease-in-out infinite; 
}

.slide {
    width: 100%; /* changed to 100% since we're not sliding */
    height: 100%;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}


@keyframes pulse {
    0% { transform: scale(1); } /* start at normal size */
    50% { transform: scale(1.1); } /* pulse to 10% larger */
    100% { transform: scale(1); } /* return to normal size */
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh;  */
}

.centered-image {
width: 150px;
    height: 106px; 
}


.content-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

.announcement-box, .login-box {
    background-color: #fff;
    border: 1px solid #bd1e1e;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.announcement-box h2, .login-box h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.login-button {
    padding: 10px 15px;
    background-color: #008000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
}

button:hover {
    background-color: #008040;
}

/* For Mobile Responsive:  */

@media (max-width: 768px) {
    .content-container {
        width: 80%;
        flex-direction: column;
    }
    .centered-image{
        width: 150px;
        height: 100px;
        padding-bottom: 20px;
    }
    .content-container{
        padding-top: 300px;
        padding-right: 40px;
    }
}
