/*----------------------------------Container-----------------------------------*/
.windowContainer1{
    position: fixed;
    height: 75%;
    width: 65%;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(225, 225, 225);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.loginWindow{
    position: absolute;
    height: 95%;
    width: 40%;
    top: 50%;
    left: 22%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.imageCut{
    position: absolute;
    height: 100%;
    width: 55%;
    right: 0%;
    background-image: linear-gradient(to bottom right, rgb(217, 121, 84) 10%, rgb(88, 87, 81) 80%, rgb(215, 208, 183) 100%);
}
.imageCut img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;    /* this clips the image to the rounded edges */
}
.contentHeaderLogin{
    position: absolute;
    height: 10%;
    width: 100%;
}
#contentTextLogin{
    position: absolute;
    top: 15%;
    left: 7%;
    font-family:sans-serif;
    font-size: 150%;
    font-weight: bold;
}
.createOrderContainer{
    position: absolute;
    height: 80%;
    width: 90%;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.createOrderContainer a{
    text-decoration: none;
}
label{
    font-family:sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: rgb(60, 60, 60);
}
input[type="text"],
input[type="email"],
input[type="password"] {
    border: none;             /* remove borders */
    border-bottom: 1px solid rgb(60, 60, 60); /* only bottom line */
    background-color: transparent; /* remove default background */
    padding: 5px 0;           /* space inside input */
    font-size: 1rem;
    outline: none;            /* remove outline when focused */
    width: 100%;              /* make line full width */
}
.loginButton{
    position: relative;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2% 30%;
    background-color: rgba(180, 35, 35, 0.8);
    border-radius: 30px;
    border: none;
    font-family:sans-serif;
    font-size: 150%;
    color: white;
}
.loginButton:hover{
    background-color: rgb(255, 145, 110);
}
.forgotPassword{
    position: relative;
    height: -50%;
    width: 90%;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-decoration: none;

    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}
#forgotPasswordText{
    font-family:sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: rgb(60, 60, 60);
}
.orSignup{
    position: relative;
    height: -50%;
    width: 90%;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    text-decoration: none;

    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}
#orSignupText{
    font-family:sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: rgb(60, 60, 60);
}

#businessName1{
    position: absolute;
    top: 15%;
    left: 2%;
    font-family:sans-serif;
    font-size: 200%;
    font-weight: bold;
}
#name1{
    position: absolute;
    top: 15%;
    right: 2%;
    font-family:sans-serif;
    font-size: 200%;
    font-weight: bold;
}
#pageName1{
    position: absolute;
    bottom: 5%;
    left: 2%;
    font-family:sans-serif;
    font-size: 200%;
    color: white;
}
