*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    overflow-x: hidden;
    width: 100%;
}

.register-container
{   
    height: calc(100vh - 60px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sign-container
{
    height: 580px;
    width: 650px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}

.sign-header
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: default;
}

.register
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.form-control
{   
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 2rem;
}

.form-control input
{   
    max-height: 43px;
    width: 350px;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 12px;
}

.form-control input::placeholder
{
    text-align: center;
    font-size: 1rem;
}

.form-control label
{
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 100%;
}

.form-control i
{
    position: absolute;
    top: 30px;
    right: 2px;
    visibility: hidden;
    font-size: 1.5rem;
}

.form-submit
{
    height: 40px;
    width: 260px;
    cursor: pointer;
    border: 1px solid #222;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.form-control.success input
{
    border: 2px solid forestgreen;
}

.form-control.success i.bi.bi-check-lg
{
    color: forestgreen;
    visibility: visible;
}

.form-control.error i.bi.bi-exclamation
{
    color: red;
    visibility: visible;
}

.form-control.error input
{
    border: 2px solid red;
}

.form-control .error-msg
{
    position: absolute;
    bottom: 8px;
    left: 0;
    visibility: hidden;
    color: #e74c3c;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}

.form-control.error .error-msg
{
    visibility: visible;
}

@media screen and (max-width: 768px)
{
    
.register-container
{   
    height: calc(100vh - 60px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sign-container
{   
    height: 440px;
    width: 500px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}

.register
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-header
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: default;
}

.form-control input
{   
    max-height: 30px;
    width: 250px;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
}

.form-control input::placeholder
{
    text-align: center;
}

.form-control label
{
    color: #222;
    font-size: 15px;
    font-weight: 600;
    max-width: 100%;
}

.form-control i
{
    position: absolute;
    top: 24px;
    right:1px;
    visibility: hidden;
    font-size: 1.2rem;
}

.form-submit
{
    height: 30px;
    width: 220px;
    cursor: pointer;
    border: 1px solid #222;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    margin-top: 10px;
    font-size: 1rem;
}

.form-control .error-msg
{
    position: absolute;
    bottom: 8px;
    left: 0;
    visibility: hidden;
    color: #e74c3c;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}

}

@media screen and (max-width: 425px)
{
    
.register-container
{   
    height: calc(100vh - 60px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sign-container
{   
    height: 440px;
    width: 350px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}

.register
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-header
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: default;
}

.form-control input
{   
    max-height: 25px;
    width: 250px;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
}

.form-control input::placeholder
{
    text-align: center;
}

.form-control label
{
    color: #222;
    font-size: 15px;
    font-weight: 600;
    max-width: 100%;
}

.form-control i
{
    position: absolute;
    top: 20px;
    right:1px;
    visibility: hidden;
    font-size: 1.2rem;
}

.form-submit
{
    height: 30px;
    width: 220px;
    cursor: pointer;
    border: 1px solid #222;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    margin-top: 1rem;
    font-size: 1rem;
}

.form-control .error-msg
{
    position: absolute;
    bottom: 8px;
    left: 0;
    visibility: hidden;
    color: #e74c3c;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}


}

@media screen and (max-width: 375px)
{
    
.register-container
{   
    height: calc(100vh - 60px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sign-container
{   
    height: 430px;
    width: 300px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}

.register
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-header
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: default;
}

.form-control input
{   
    max-height: 25px;
    width: 250px;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
}

.form-control input::placeholder
{
    text-align: center;
}

.form-control label
{
    color: #222;
    font-size: 15px;
    font-weight: 600;
    max-width: 100%;
}

.form-control i
{
    position: absolute;
    top: 20px;
    right:1px;
    visibility: hidden;
    font-size: 1.2rem;
}

.form-submit
{
    height: 30px;
    width: 220px;
    cursor: pointer;
    border: 1px solid #222;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    margin-top: 1rem;
}

}

@media screen and (max-width: 320px)
{
    
.register-container
{   
    height: calc(100vh - 60px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sign-container
{   
    height: 430px;
    width: 300px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
}

.register
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-header
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: default;
}

.form-control input
{   
    max-height: 25px;
    width: 250px;
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
}

.form-control input::placeholder
{
    text-align: center;
}

.form-control label
{
    color: #222;
    font-size: 15px;
    font-weight: 600;
    max-width: 100%;
}

.form-control i
{
    position: absolute;
    top: 20px;
    right:1px;
    visibility: hidden;
    font-size: 1.2rem;
}

.form-submit
{
    height: 30px;
    width: 220px;
    cursor: pointer;
    border: 1px solid #222;
    font-weight: 600;
    background-color: #222;
    color: #fff;
    margin-top: 1rem;
}

}


