body {
    background-size: cover;
    background-position: center;
    background-color: white;
    height: 100vh;
    min-height: 550px;
    width: 100vw;
    min-width: 800px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    flex-direction: column;
}

h1, h2, h3, p, label {
    font-family: 'Verdana', 'Georgia', sans-serif;
}

label {
    width: 100%;
    font-weight: bold;
}

.logo-mobile-container {
    display: none;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26; /* Adjust the opacity value as needed */
    z-index: -1; /* Ensure the background is behind other content */
}

.container {
    width: 750px;
    height: 500px;
    background-color: white;
    border-radius: 8px; /* Optional: Adds rounded corners for a softer look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.info-section {
    width: 42%;
    height: 100%;
    background-color: #007af6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-radius: 8px 0 0 8px;
}

.info-text-head {
    margin-top: 50px;
    text-align: center;
    width: 150px;
    height: 85px;
}

.info-img {
    width: 80%;
    margin-bottom: 80px;
}

.info-text-body {
    font-style: italic;
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
    height: 50px;
}

.input-section {
    width: 58%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: right;
    width: 100%;
}

.logo {
    width: 100px;
    margin: 10px 10px;
}

.sign-up-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 120px;
    margin: 0;
}

#sign-up-text {
    text-align: center;
    color: #f862f0;
    margin-top: 35px;
}

.scissors-image {
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 20px;
}

.clippers-image {
    height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 20px;
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 270px;
    width: 70%;
}

input {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow */
    border-radius: 5px;
    padding: 2%;
    width: 96%;
}

.input-field {
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

#business-name-input {
    display: none;
}

#sign-up-confirmation-text {
    margin: 3px 0 0 0;
    font-size: 14px;
    color: white;
    text-align: center;
}

#sign-up-button {
    background-color: #f862f0; /* Set your desired background color */
    color: white; /* Set the text color */
    padding: 5px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Set the font size */
    border: none;
    border-radius: 4px; /* Optional: Add rounded corners for a softer look */
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Optional: Add a subtle shadow for elevation */
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
    font-family: 'Verdana', 'Georgia', sans-serif;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

#sign-up-button:hover {
    background-color: #c54dbf; /* Change the background color on hover */
}

.mode-switch-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mode-switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.switch-logo {
    height: 30px;
    margin: 10px 0 6px 0;
}

.switch-text {
    font-size: 18px;
    margin: 5px;
    color: #f862f0;
}

.switch-arrow {
    height: 40px;
}


@media (max-width: 800px) {
    body {
        background-size: cover;
        background-position: center;
        background-color: white;
        height: 100vh;
        min-height: 750px;
        width: 100vw;
        min-width: 350px;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
    }

    .container {
        width: 350px;
        height: 700px;
        background-color: white;
        border-radius: 8px; /* Optional: Adds rounded corners for a softer look */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .info-section {
        width: 100%;
        height: 47%;
        background-color: #007af6;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        color: white;
        border-radius: 8px 8px 0 0;
    }

    .input-section {
        width: 100%;
        height: 53%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        display: none;
        justify-content: right;
        width: 100%;
    }

    .logo-mobile-container {
        display: block;
    }

    .input-field {
        width: 100%;
        height: 45px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 5px 0;
    }

    .info-text-head {
        margin-top: 30px;
        text-align: center;
        width: 240px;
        height: 50px;
    }

    .info-img {
        width: 70%;
        margin-bottom: 0;
    }

    .info-text-body {
        margin-bottom: 10px;
    }

}

