html, body {
    min-width: 700px;
    overflow: hidden;
}

/* Mobile styles (default) */
body {
    font-family: 'Nunito', sans-serif;
    background-image: url('../svg/images/background/main_bkg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop styles (min-width: 768px) */
@media screen and (min-width: 768px) {
    body {
        font-family: 'Nunito', sans-serif;
        background-image: url('../svg/images/background/main_bkg.svg');
        background-size: initial;
        background-repeat: no-repeat;
        background-color: #f4f4f4;
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

p {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Nunito', sans-serif;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

input {
    font-family: 'Nunito', sans-serif;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

button {
    font-family: 'Nunito', sans-serif;
    background-color: #003E60;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button:hover {
    background-color: #001F32;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    min-width: 700px;
    overflow: hidden;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}