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: 250px; 
    height: 140px; 
}


.content-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
}

.announcement-box, .login-box {
    background-color: rgb(240 240 240 / 78%);
    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;
}
.login-box{
    border-radius: 20px;
}

.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;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .login-button {
    padding: 15px 15px;
    background-color: #008000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    width: 40%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  

button:hover {
    background-color: #008040;
}

/* For Mobile Responsive:  */


