* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: solid 1px black;
}


.main {
    display: flex;
    border: solid black 1px;
    background-color: aquamarine;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
}

.form {
    display: flex;
    width: 100%;
    justify-content: center;
    border: solid 1px greenyellow;
    border-radius: 10px;
}

.img {
    width: 90px;
}

.layout {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.fallback {
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    gap: 5px;
    height: 100dvh;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
}

.fallbackCont {
    background-color: rgb(36, 72, 60);
    height: fit-content;
    display: flex;
    padding: 10px 30px;
    margin: 0px 10px;
    border-radius: 4px;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    color: white;
}