.only-background-layout {
    all: unset;
    display: block;
    width: 100%;
    height: 100vh;
}

.no-style-main {
    all: unset;
    display: block;
    width: 100%;
    height: 100vh;
}

.mud-snackbar {
    font-size: 1.2rem;
    padding: 20px 24px;
    min-width: 300px;
    max-width: 600px;
}

.main-section {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: Arial, sans-serif;
}

    .main-section .image-section {
        width: 100%;
        height: 18%;
        display: flex;
        justify-content: center;
        align-items: start;
    }

        .main-section .image-section img {
            max-width: 60%;
            height: auto;
        }

    .main-section .form-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    .main-section .form-card {
        background-color: #FFFFFF;
        border-radius: 12px;
        padding: 30px;
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .main-section .custom-textfield {
        width: 100% !important;
        max-width: 400px !important;
    }

        .main-section .custom-textfield input {
            font-size: 1.2rem;
            padding: 14px;
            border-radius: 8px;
        }

    .main-section .fade-in {
        opacity: 0;
        filter: blur(10px);
        animation: fadeIn 2.5s ease-in-out forwards;
    }

    .main-section .fade-in-2 {
        opacity: 0;
        transform: translateY(60px);
        animation: fadeIn 1s ease-in-out forwards;
        animation-delay: 1.8s;
    }

.dialog-no-frame {
    box-shadow: none !important;
    background-color: transparent !important;
    padding: 0 !important;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 1200px) {
    .main-section .image-section img {
        max-width: 70%;
    }
}

@media (max-width: 1000px) {
    .main-section .image-section img {
        max-width: 80%;
    }
}

@media (max-width: 800px) {
    .main-section .image-section img {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .main-section .image-section img {
        max-width: 100%;
    }
}