@import url(https://fontservice.olcdns.com/outfit/stylesheet.css);

body {
    font-family: 'Segoe UI', 'Outfit-Regular', sans-serif;
    background-color: #0e2c68;
    background-image: url('https://ik.imagekit.io/moonlightstudios/tr:h-auto,w-auto/cpatake/billboards/homepagebg-musicjam.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h1, h2 {
    font-family: 'Segoe UI Bold', 'Outfit-Bold';
}

h3, h4, h5 {
    font-family: 'Segoe UI Medium', 'Outfit-SemiBold';
}

/* Adjustments to position the logo above the form */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo {
    margin-bottom: 15px; /* Space between logo and form */
}

/* mobile logo */
@media screen and (max-width: 768px) {
    .logo {
        margin-bottom: 3px; /* Space between logo and form */
    }
}

.form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid #c0c0c0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjusted margin for paragraph elements within the login section */
.login p {
    margin-bottom: 5px; /* Modified margin for paragraphs */
}

/* Media query for smaller screens (e.g., mobile) */
@media screen and (max-width: 768px) {
    .form {
        flex-direction: column; /* Stack login and additional info in a column */
        align-items: center;
        text-align: center;
    }

    .login,
    .additional-info {
        width: 100%; /* Take full width on smaller screens */
    }

    .login {
        padding-right: 0; /* Remove padding between login and additional info */
        margin-bottom: 20px; /* Space between login and additional info */
    }
}

.additional-info {
    width: 35%; /* Adjust the width as needed */
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.additional-info h3 {
    color: #0066cc;
    font-size: 16px;
    margin-bottom: 8px;
}

.additional-info ul {
    list-style-type: none;
    padding: 0;
}

.additional-info li {
    font-size: 14px;
    margin-bottom: 4px;
}


.logo {
    text-align: center;
    margin-top: 50px;
}

.form {
    background-color: white;
    border: 1px solid #C0C0C0;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form h2 {
    color: #0066CC;
    margin-bottom: 10px;
    font-weight: normal;
}

.form p {
    margin-bottom: 5px;
}

.form input {
    width: 300px;
    height: 25px;
    border: 1px solid #C0C0C0;
    padding: 5px;
    border-radius: 5px;
}

.form button {
    width: 100px;
    height: 30px;
    background: linear-gradient(#0099FF, #0066CC);
    color: white;
    font-family: 'Segoe UI Bold', 'Outfit-Bold', Arial Bold;
    font-weight: bold;
    border: none;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.form a {
    color: #0066CC;
    text-decoration: none;
}

.form a:hover {
    text-decoration: underline;
}

/* Styles for the modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 80%;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

/* Media query for smaller screens (e.g., mobile) */
@media screen and (max-width: 768px) {
    .modal {
        max-width: 300px;
    }
}