body{
    height: 100vh;
}
.CenterForForm{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    height: 80%;
    width: 100%;

    /* border: 1px solid black; */
}

.LogInForm{
    width: 300px;
    height: 300px;
    padding: 30px;
    background-color: var(--pastel_orange);

    /* border: 1px solid black; */
    border-radius: 5px;
    /* box-shadow: inset 0px 0px 5px 5px var(--dunkel_orange); */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(0, 0, 0, 0.1) inset,
                15px 15px 1px 5px var(--pastel_orange);
}

.LogInForm input[type=text], input[type=password]{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    border: 1px solid black !important;
    color: black;
    font-size: 1.5rem;
}
.LogInForm input[type=submit]{
    margin-top: 10px;
    margin-left: auto;
    padding: 15px 30px;
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}
.LogInForm input[type=submit]:hover{
    border-color: white;
}
