body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #f4f4f4;
}


/**************************************************************************/
/******************************  Sign up      *****************************/
/************************************************************************/

.home-logo {
    height: 30px;
    width: 30px;
}

.home-logo>img {
    height: 100%;
    width: 100%;
}

.full-screen-sign-up {
    width: 100%;
    height: 100%;
    background-image: url(../image/custom/sign-up-bg.png);
    background-repeat: repeat;
    background-color: #962f2f06;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
}

.sign-up-content {

    color: rgb(3, 3, 3);
    background-color: rgb(250, 248, 248);
    margin: 100px;
    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);
}

.sign-up-container {
    display: flex;
    /* margin-top: 20px; */
}

@media (max-width: 480px) {

    body,
    html {
        margin: 0;
        padding: 0;

        overflow: auto;
        background-color: #f4f4f4;
    }

    .sign-up-container {
        flex-flow: column;
    }

    .full-screen-sign-up {
        width: auto;
        height: auto;
    }

    .sign-up-content a {
        padding-left: 60px;
        margin-left: 80px;
        display: block;
    }

}


.carousal-container {
    height: 450px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousal {
    height: 400px;
    width: 90%;
    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;
}

.form-container {
    height: 450px;
    width: 400px;

}

.form-container>h1 {
    margin: 0px;
    font-size: 30px;
    color: rgb(197, 29, 29);
    text-align: center;
}

.form {
    /* margin-top: 30px; */
    display: block;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 18px;
    background-color: #f9f9f9;
    outline: none;
}

.form-group input::placeholder {
    color: #bbb;
}

.forget-password {
    display: block;
    text-align: right;
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;

}

.already-account {
    padding-top: 20px;
    display: block;
    text-align: center;
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
}



/* .form span {
    display: block;
    text-align: right;
    font-size: 18px;
    color: #e74c3c;
    margin-bottom: 15px;
    cursor: pointer;
} */

/* 
.form span:last-of-type {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
    text-align: center;
}

.form span:last-of-type a {
    color: #007bff;
    text-decoration: none;
}

.form span:last-of-type a:hover {
    text-decoration: underline;
} */

.form button {
    width: 100%;
    padding: 10px;
    background-color: rgba(197, 29, 29, 0.692);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.form button:hover {
    background-color: rgb(197, 29, 29);
}

.make-button {
    margin-top: 150px;
    text-align: center;
    align-items: center;
    display: block;
    width: 95%;
    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);
}

.password-container {
    position: relative;
    width: 95%;
    display: flex;
    align-items: center;
}

.password-container input {
    flex: 1;
    padding-right: 35px;
    /* Space for the icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}