
#signup-section {
    margin: 50px 0;
}

.head_text h2 {
    font-family: sans-serif;
    letter-spacing: 2px !important;
}

#signup-section input,
#signup-section select {
    display: block;
    padding: 12px 14px;
    border-radius: 0px;
    border: 1px solid #d7d7d7;
    width: 100%;
    line-height: normal;
    resize: none;
    transition: border-color .1s ease-in-out;
    background: transparent;
    margin-top: 10px;
    box-shadow: none;
}

#signup-section input:focus,
#signup-section select:focus {
    border-color: #000000;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

#signup-section .main {
    max-width: 450px;
    text-align: center;
    margin-top: 10px 0;
}

#signup-section form {
    text-align: left;
}

#signup-section button {
    width: auto;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 1px;
    background-color: #000000;
    width: 100%;
    padding: 12px 14px;
    color: #ffffff;
    margin: 25px 0px;
}

#btn-signup {
    text-align: center;
}

#signup-section button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

#signup-section a {
    text-decoration: none;
    color: #6a6a6a;
}

#signup-section a:hover {
    color: #9d9d9d;
}

@media (max-width:768px) {
    #signup-section .main {
        width: 320px;
        text-align: center;
        margin-top: 10px 0;
    }
}