* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container2 {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    background-color: #0e0a0a;
}

.container {
    min-width: 700px;
    min-height: 350px;
    border-radius: 20px;
    position: relative;
    -webkit-transition: 1.5s ease-in-out;
    transition: 1.5s ease-in-out;
    transform-style: preserve-3d;
}

.side {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px 50px;
    color: #fff;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 20px;
}
.content {
    transform: translatez(70px) scale(0.8);
    line-height: 1.5em;
}
.content h1 {
    position: relative;
}
.content p {
    margin-top: 50px;
    line-height: 2em;
}
.content h1:before {
    content: "";
    position: absolute;
    bottom: -20px;
    height: 3px;
    background-color: #880c0c;
    width: 70px;
    left: 50%;
    transform: translateX(-50%);
}
.front {
    z-index: 2;
    background-size: 100vh;
    background-size: cover;
    background-color: #0e0a0a;
}
.back {
    background-color: #0e0a0a;
    transform: rotateY(180deg);
    z-index: 0;
    padding-top: 10px;

}
.container:hover {
    transform: rotateY(180deg);
}
form {
    text-align: left;
}
.back h1 {
    margin: 0;
}
form label,
form input {
    display: block;
}
form input,
form textarea {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #444;
    padding: 5px;
    width: 100%;
    color: #fff;
}
form label {
    margin: 15px 0;
}
form input[type="submit"] {
    display: block;
    width: auto;
    margin: 10px auto;
    padding: 5px 10px;
    border: 3px solid #555;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}
.white-mode {
    text-decoration: none;
    padding: 7px 10px;
    background-color: #122;
    border-radius: 3px;
    color: #fff;
    transition: 0.35s ease-in-out;
    position: fixed;
    left: 15px;
    bottom: 15px;
}

.white-mode:hover {
    background-color: #fff;
    color: #122;
}

.logo\.size{
    width:220px;
    height:200px;
}
.bottom2{
    text-align: center;
    width: auto;
    height: 80px;
    background-color: black;
}
.color{
    color: white;
    text-align: center;
}


@media (max-width: 768px) {

    .container {
        min-width: 90%;
        min-height: auto;
        height: auto;
        max-width: 350px;
    }

    .container {
        transform: rotateY(180deg);
    }

    .front {
        z-index: 0;
    }

    .back {
        z-index: 2;
    }

    form input,
    form textarea {
        padding: 10px;
        font-size: 16px;
    }

    form input[type="submit"] {
        width: 100%;
        padding: 10px;
    }

    .white-mode {
        font-size: 14px;
    }
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #444;
}
footer p {
  margin: 0;
  font-weight: 400;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #66ccff;
}

footer .social-icons {
  margin-top: 10px;
}

footer .social-icons i {
   font-size: 20px;
   color: #fff;
   transition: color 0.3s ease;
}

footer .social-icons a:hover i {
  color: #66ccff;
}







@media (max-width: 480px) {
    .container {
        min-width: 90%;
        max-width: 100%;
    }

    .white-mode {
        font-size: 12px;
    }
    .back {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        height: 100%;
    }
}