@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Nunito+Sans:wght@300&family=Roboto&family=Sansita&family=Sansita+Swashed&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Nunito Sans", sans-serif;
}
body{
    /* background-color: #232324; */
    /* background-color: #16181c; */
    background-color: #fff;
}
.signup-container{
    display: flex;
    justify-content: center;
}
.signup-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 20px auto;
    width: 100%;
    max-width: 450px;
    border: none;
}
.signup-form-container{
    padding: 20px;
    /* border: 1px solid rgb(54, 53, 53); */
    box-shadow: 0 0 5px lightgray;
    border-radius: 10px;
    margin-top: 30px;
}
.logo{
    color: #ff6900;
    text-align: center;
}
.signup-form-text{
    /* color:#fff; */
    color: #ff6900;
    text-align: center;
}
.input-container{
    margin-top: 18px;
}
.input-container span{
    color:#ff6900;
}
.input-container .input-field{
    border-radius: 20px;
    display: flex;
    /* background-color: #16181c; */
    border: 1px solid lightgray;
    padding: 10px;
    margin-top: 5px;

}
.input-container input{
    /* background-color: #16181c; */
    outline: none;
    border: none;
    margin-left: 7px;
    background-color: #fff;
    color: #000;
    /* color: #ff6900; */
    width: 100%;
}
.input-container .icon-container{
    color: #ff6900;
}
.form-button{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.form-button button{
    width: 90%;
    height: 40px;
    color: #fff;
    background-color:#ff6900;
    border: none;
    outline: none;
    border-radius: 30px;
    font-size: 17px;
    cursor: pointer;
}
.form-alt-text{
    text-align: center;
    /* color: #fff; */
    color: #ff6900;
    margin-bottom: 15px;
}
.form-alt-text a{
    color: #ff6900;
    text-decoration: none;
}

/* MEDIA QUERY */
@media screen and (max-width:460px) {
    .signup-form-container{
        border: none;
        box-shadow: none;
        padding: 10px;
        margin-top: 10px;
    }
}
.logo a{
    text-decoration: none;
    color:#ff6900;
}
.error{
    color: red;
    text-align: center;
    display: none;
    position: relative;
    /* top: 23px; */
}
#error{
    color:red;
}
@media screen and (max-width:1000px) {
    .error{
        position: relative;
        /* top: 20px; */
    }
}
.username-error, .email-error, .mobile-error, .password-error, .confirm-error{
    text-align: left;
}
.country-list{
    width: 100%;
    /* background-color: #16181c; */
    border: 1px solid rgb(54, 53, 53);
    padding: 10px;
    background-color: transparent;
    border-radius: 20px;
    color: #ff6900;
    width: 100%;
    max-height:200px ;
    outline: none;
}
/* option{
    color: lightgray;
} */
/* option:hover{
    background-color: #ff6900;
    color: #000;
} */
#email-error, #password-error{
    text-align: left;
}
.form-alt-text a{
    color: blue;
}
#signup-btn{
    padding: 5px 10px;
    color:#fff;
    background-color: #0052ff;
    outline: none;
    border: none;
    cursor: pointer;
}