 /* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFF;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column; /* Adjusted to stack content vertically */
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%; /* Reduce the width to 70% */
    height: 70%; /* Reduce the height to 70% */
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background-color: #25a3dc;
    padding-right: 0px;
    padding-left: 0px;
}

.login-side {
    flex: 1;
    background-color: black;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 20px 20px 0;
    width: 100%; /* Adjust width to fit the viewport */
    padding: 20px; /* Add padding to ensure content is visible */
}

.info-side {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25a3dc;
    border-radius: 20px 0 0 20px;
}

.info-side img {
    max-width: 100%;
    height: auto;
    animation: parachute 10s infinite ease-in-out; /* Parachute-like movement */
}

@keyframes parachute {
    0% { transform: translateY(-50px); }
    50% { transform: translateY(50px); }
    100% { transform: translateY(-50px); }
}

form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    background-color: #25a3dc;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #1c87b7;
}

a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    margin-top: 15px;
}

a:hover {
    color: #1c87b7;
}

.copyright {
    color: black;
    padding: 10px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Media Query for mobile devices */
@media screen and (max-width: 768px) {
    body {
        overflow-y: scroll; /* Add vertical scrollbar */
    }

    .container {
        flex-direction: column; /* Stack content vertically */
    }

    .info-side {
        border-radius: 20px 20px 0 0; /* Adjust border radius */
        border-bottom: none; /* Remove border from the bottom */
        order: -1; /* Change the order to display info-side on top */
    }

    .login-side {
        border-radius: 0 0 20px 20px; /* Adjust border radius */
        border-top: none; /* Remove border from the top */
        width: 100%; /* Adjust width to fit the viewport */
        padding: 20px; /* Add padding to ensure content is visible */
    }

    form {
        padding: 10px; /* Adjust padding */
    }

    input[type="submit"] {
        width: 40%; /* Adjust button width */
    }
}

h2{
    display: block;
    font-size: 1.7em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}