* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
}





a {
    text-decoration: none;
    color: black;
}

.sign_up {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    height: 80%;
    width: 40%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.sign {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

h2 {
    font-weight: bold;
}

h3 {
    font-weight: bold;
}

.title a {
    text-decoration: underline;
}

.title a:hover {
    color: rgb(46, 46, 228);
}

.form {
    display: flex;
    flex-direction: column;

}

.form input {
    width: 100%;
    border: 1px solid;
    border-color: transparent transparent black transparent;
    text-align: center;
    color: black;
    outline: none;
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
}

.form input:hover {
    border: 1px solid;
    border-color: transparent transparent black transparent;
}

.form input:focus {
    border: 1px solid;
    border-color: transparent transparent black transparent;

}

.form input[type="Email"] {
    margin-bottom: 20px;
}

.form .password {
    position: relative;
}


.password .eye {
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
}

.box {
    display: inline;
    position: relative;
    width: 100%;
    height: 100%;
}

.block {
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #1E3050;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    transform: rotate(-45deg);
    transition: 0.3s;
}

.unblock {
    position: absolute;
    width: 0;
    height: 0;
    background-color: #1E3050;
    top: 50%;
    right: -3px;
    transform: rotate(-45deg);
    transition: 0.3s;
}

button {
    width: 50%;
    background-color: gray;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

button:hover {
    opacity: 0.7;
}

p {
    text-align: center;
    font-size: 18px;
    position: relative;
    margin-bottom: 10px;
}

p::before {
    content: "";
    display: block;
    width: 150px;
    height: 2px;
    background-color: gray;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -2;
}

p::after {
    content: "";
    display: block;
    width: 150px;
    height: 2px;
    background-color: gray;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -2;
}

p>span {
    background-color: #fff;
}

.icons {
    display: flex;
    justify-content: center;
}

.icons div {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: 0.5s;
    margin-right: 8px;
}

img {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 16px;
    }

    button {
        font-size: 18px;
        width: 150px;
        height: 50px;
    }

    .form input {
        font-size: 14px;
    }
}