@import url("globalStyle.css");


/* REGISTER PAGE (start)--------------------------------- */
.row{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: space-between;
    height: 55px;
}

.column{
    padding-top: 10px;
}

.register-body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--v-dark-purple);
    background: var(--v-light-purple);
}

.wrapper{
    width: 700px;
    background: white;
    border-radius: 10px;
    padding: 35px 35px 35px 35px;
    box-shadow: var(--box-shadow);
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 15px 0;
    padding: 3px;
    /* border: 1px solid blue;  */
}

.input-box input, select{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid var(--dark-purple);
    border-radius: 15px;
    font-size: var(--small-font);
    color: var(--v-dark-purple);
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: var(--dark-purple);
}

/* SOMETHING LOOKS OFF */
select option:first-child {   
    color: var(--dark-pink);
    background: var(--v-light-purple);
}

.wrapper .btn-next{
    width: 100%;
    height: 45px;
    background: var(--dark-purple);
    border: none;
    outline: none;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    cursor: pointer;
    font-size: 16.5px;
    color: white;
    font-weight: 600;
    margin-top: 10px;
}

.wrapper .btn-next:hover{
    transform: scale(1.015);
    transition: all 0.5s ease;
    background: var(--dark-pink);
}
