
.sign_up {
    margin: 60px auto;
    max-width: 420px;
    border: 1px solid #e0e0e0;
    padding: 48px 36px;
    background: #fff0f6;
    border-radius: 18px;
    height: auto;
    box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.15);
}


.names {
    border: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 24px;
}


fieldset {
    border: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}


#submit_button {
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(90deg, #8e2de2 0%, #ff6a00 100%);
    border: none;
    padding: 12px 0;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#submit_button:hover {
    background: linear-gradient(90deg, #ff6a00 0%, #8e2de2 100%);
}


.hr-lines {
    position: relative;
    max-width: 350px;
    margin: 40px auto;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}
.hr-lines:before,
.hr-lines:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ccc;
}
.hr-lines:before {
    left: 0;
}
.hr-lines:after {
    right: 0;
}

#signup {
    color: #8e2de2;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}


.icons {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
}


#google {
    height: 32px;
    width: 32px;
    color: #ea4335;
}
#facebook {
    color: #1877f3;
    height: 32px;
    width: 32px;
}