
/* Signup Page  */
.signup-container {
    width: 90vw;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    min-height: 70vh;
}


.form-box {
    max-width: 300px;
    background: #f1f7fe;
    overflow: hidden;
    border-radius: 1rem;
    color: #010101;
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.5rem;
    gap: 16px;
    text-align: center;
}

/*Form text*/
.title {
    font-weight: bold;
    font-size: 1.6rem;
}

.subtitle {
    font-size: 1rem;
    color: #666;
}

/*Inputs box*/
.form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
}

.input {
    background: none;
    border: 0;
    outline: 0;
    height: 3rem;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;

}

.form-section {
    padding: 1rem;
    font-size: .85rem;
    background-color: #e0ecfb;
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
    text-align: center;
}

.form-section a {
    font-weight: bold;
    color: #0066ff;
    transition: color .3s ease;
    text-decoration: none;
    /* border: 1px solid blue;
    padding: 0.1rem;
    border-radius: 0.5rem */
}

.form-section a:hover {
    /* background-color: #025de6; */
    text-decoration: underline;
}

.sub-btn{
    width: 45%;
    margin: auto;
    border-radius: 3px;
    background-color: #2297e6ba;
    color: white;
}

.pass-conditions{
    margin-left: 50px;
}


