body, html{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0F1719;
    color: white;
    zoom: 90%;
}

/* Header */

.header1{
    display: grid;
    background-color: orange;
    grid-column: 1/4;
    padding-bottom: 0;
    margin-bottom: 0;
    color: black;
    padding-top: 12px;
    font-size: 20px;
}

.header1 h2{
    margin-left: 20px;
    margin-bottom: 0;
}

/* Navbar */

.nav-list{
    display: flex;
    gap: 60px;
    grid-column: 3;
    list-style: none;
    margin-top: 10px;
    font-size: 25px;
    justify-content: end;
    padding-right: 60px;
}

.nav-list li{
    margin-bottom: 15px;
    padding-bottom: 0px;
}

.nav-list a{
    color: black;
    text-decoration: none;
}

.nav-list li:hover{
    transform: scale(1.07);
    transition: 0.5ms;
}

/* signup area */

.logcontainer{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 0.8fr 3fr 0.5fr;
    width: 100%;
    height: 100%;
}

/* image area */

.showimage{
    grid-column: 1/3;
    grid-row: 1/8;
    margin-right: 35px;
    margin-bottom: 0;
}

.showimage img{
   width: 100%;
   height: 100%;
}

/* sign up header */

.logheader{
    text-align: center;
    grid-column: 3;
    margin-bottom: 0;
    justify-self: center;
    align-self: center;
    font-size: 28px;
    color: orange;
    margin-right: 30px;
}

/* Sign up card */

.logcard{
    text-align: center;
    grid-column: 3;
    grid-row: 2/4;
    align-self: center;
    justify-self: center;
    background-color: orange;
    padding: 10px 60px 50px 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-right: 30px;
    margin-bottom: 60px;
    height: 800pxpx;
    width: 400px;
    border-radius:20px ;
    box-shadow: 0 0 25px 5px black;
}

.logform{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin-top: 20%;
}

.logcard input[type="text"],
.logcard input[type="password"],
.logcard input[type="email"]{
    outline: none;
    border: none;
    border-bottom: 2px solid black;
    align-self: center;
    justify-items: center;
    background-color: orange;
    margin-bottom: 80px;
    font-size: 25px;
    width: 100%;
}

.logcard input::placeholder{
    color: black;
}

/* Button */

.button3{
    grid-column: 3;
    padding: 15px 80px;
    width: 400px;
    height: 60px;
    justify-self: center;
    margin-top: 10px;
    font-size: 20px;
    background-color: black;
    border-radius: 10px;
    color: orange;
    border: 0;
    margin-right: 30px;
}

.button3:hover{
    transform: scale(1.08);
    transition: 0.4s;
}

/* Options below form */
.checkbox{
    grid-column: 3;
    justify-self: center;
    font-size: 21px;
    margin-bottom: 40px;
    margin-top: 0;
    color: orange;
    margin-right: 30px;
}

.checkbox input[type=checkbox]{
    width: 17px;
    height: 17px;
}

.logoptions{
    margin: 0;
    margin-top: 40px;
    margin-bottom: 0;
    grid-column: 3;
    grid-row: 6;
    justify-self: center;
    list-style: none;
    text-align: center;
    font-size: 20px;
    margin-right: 30px;
}

.logoptions a{
    grid-column: 3;
    grid-row: 8;
    justify-self: center;
    text-decoration: none;
    color: orange;
}

/* Footer */

.footer{
    background-color: orange;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    width: 100%;
    margin-top: 10px;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #0F1719;
    margin-bottom: none;
    margin-top: 1%;
}

.ftext{
    margin-left: 30px;
    font-size: 25px;
}

.social {
    grid-column:3;
    justify-content: end;
    font-size: 30px;
}

.social i{
    color: #0F1719;
    padding: 10px;
}



