body,
html {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/**************************************************************************/
/******************************  Sign up      *****************************/
/************************************************************************/

.home-logo {
    height: 30px;
    width: 30px;
}

.home-logo>img {
    height: 100%;
    width: 100%;
}

.full-screen-sign-up {

    background-image: url(../image/custom/sign-up-bg.png);
    background-repeat: repeat;
    background-color: #962f2f06;
    font-size: 24px;
}

.sign-up-content {

    color: rgb(3, 3, 3);
    background-color: rgb(250, 248, 248);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.sign-up-header {
    width: 100%;
    text-align: center;

}

.sign-up-header>h1 {
    font-size: 30px;
}

.sign-up-header>h1>span {
    color: rgb(197, 29, 29);
}

.carousal {
    height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousal div {
    width: 100%;
    height: 80%;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousal div.active {
    opacity: 1;
}

.carousal>div>span {
    margin-top: 20px;
    display: block;
    font-size: 24px;
    text-align: center;
    color: #555;
}

.make-button {

    text-align: center;
    align-items: center;
    display: block;

    padding: 10px;
    background-color: rgba(197, 29, 29, 0.692);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.make-button:hover {
    background-color: rgb(197, 29, 29);
}

@media (max-width: 480px) {
    .sign-up-content {
        margin: 10px;
    }
}