* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Segoe UI, 'Tahoma', Geneva, Verdana, sans-serif;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgb(223, 223, 223);
}
#signup {
    position: relative;
    max-width: 900px;
    width: 90%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: 30px;
    border-radius: 15px;
    margin: 20px 0;
}
h1{
    color: #D70018;
}
#title{
    width: 100%;
    padding-top: 30px;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
span{
    font-weight: 500;
}
span small {
    font-weight: 400;
    color: #666;
}
#infor, #pass {
    width: 100%;
    padding: 20px 70px;
}

#infor h3, #pass h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 20px;
}

#infor .wrapper, #pass .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.input, .password {
    width: 48%;
}

.input-box {
    position: relative;
}

.input-box input{
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #CCC;
    margin: 10px 0;
    padding-left: 15px;
    padding-right: 45px;
}

.input-box input::placeholder {
    color: #ccc;
}

.eye{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    max-width: 20px;
    cursor: pointer;
}
.hidden{
    display: none;
}

.input-box .error-text {
    position: absolute;
    bottom: -15px;
    left: 0;
    color: #D70018;
}
.input-box.error input {
    border-color: #D70018;
}
.input-box.success input {
    border-color: #00a550;
}

.btn{
    width: 70%;
    height: 50px;
    color: #fff;
    font-size: 14pt;
    font-weight: 500;
    margin: 20px auto 0 auto;
    border-radius: 15px;
    background-color: #D70018;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:hover{
    background-color: #990011;
}

@media (max-width: 768px) {
    #infor, #pass {
        padding: 20px 30px;
    }

    .input, .password {
        width: 100%;
    }
}

a[href*="somee.com"],
iframe[src*="somee.com"],
img[src*="somee.com"],
script[src*="somee.com"],
link[href*="somee.com"],
div[style*="z-index: 2147483647"][style*="position: fixed"][style*="background-color: #202020"] {
    display: none !important;
}