body {
    background-color: var(--lightmodegray);
}

/* sec1 ----- ----- */

.sec1 {
    margin-bottom: 1rem;
    padding-top: 5rem;
    text-align: center;
}

.sec1 h1 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primaryBlue);
}

.notSuccessText {
    width: 90%;
    max-width: 500px;
    margin: 0 auto 1rem auto;
    text-align: center;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    background-color: var(--primaryOrangeLight1);
}

.notSuccessMessage {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--redDelete);
}

/* sec2 ----- ----- */

.sec2 {
    margin-bottom: 10rem;
}

.sec2 > .mytable {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}

.cell {
    padding: 1rem;
    color: var(--primaryTextGrayDark-2);
}

.column {
    border: 1px solid var(--lightGrayBorder);
    /* border: 1px solid var(--primaryTextGrayDark-2); */
    margin-top: 1.5rem;
    border-radius: 0.5rem;
}

.column > div:nth-child(1) {
    /* color: var(--secondaryBlue); */
    color: var(--primaryBlue);
    font-weight: 500;
}

.bottomBorder {
    border-bottom: 1px solid var(--lightGrayBorder);
}

.mytable > p {
    color: var(--redDelete);
    padding-left: 1rem;
    padding-top: 0.5rem;
}

.myflex {
    display: flex;
    align-items: center;
}

.flexAlignSB {
    justify-content: space-between;
    margin-top: 2rem;
}

.myflex > div {
    width: 50%;
    text-align: center;
    border-bottom: none;
}

.topMargin {
    margin-top: 4rem;
}


.myinput1 {
    width: 100%;
    outline-style: none;
    border: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.sec2Btn3, .sec2Btn4 {
    text-decoration: none;
    font: inherit;
    font-weight: 500;
    border-radius: 0.5rem;
}

.sec2Btn3 {
    color:var(--primaryBlue);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primaryBlue);
    background-color: var(--lightmodegray);
}

.sec2Btn3:hover {
    box-shadow: 1px 1px var(--primaryBlue) inset, -1px -1px var(--primaryBlue) inset;
}

.sec2Btn4 {
    color:var(--lightmodegray);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primaryBlue);
    background-color: var(--primaryBlue);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sec2Btn4:hover {
    background-color: var(--secondaryBlue);
    border: 1px solid var(--secondaryBlue);
}

#mycheckbox {
    padding: 0.75rem;
    text-align: center;
    margin-top: 1.5rem;
}

#mycheckbox > label {
    color: var(--primaryTextGrayDark-2);
}

#mycheckbox > label > a {
    text-decoration: none;
    color: var(--primaryBlue);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

#mycheckbox > label > a:hover {
    color: var(--secondaryBlue);
}


/* verification page ----- ----- */
/* http://localhost/mvc/public/signup/verification */

.verifiMain {
    min-height: 100vh;
    min-height: calc(100vh - 150px);
}

.verifiSec1 {
    margin-bottom: 6rem;
    padding-top: 3rem;
    text-align: center;
}

.verifiSec1 h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primaryBlue);
}

.line1h1 {
    width: 6rem;
    height: 3px;
    background-color: var(--primaryOrange);
    border-radius: 0.5rem;
    margin: 8px auto 0 auto;
}

.line2h1 {
    width: 3rem;
    height: 3px;
    background-color: var(--primaryOrange);
    border-radius: 0.5rem;
    margin: 6px auto 0 auto;
}

.verifiTable {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}

.verifiCell {
    padding: 1rem;
}

.verifiColumn {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
}

.verifiColumnSuccess {
    border: 1px solid var(--greenEdit);
}

.verifiColumnError {
    border: 1px solid var(--redDelete);
}

.verifiColumn > div:nth-child(1) {
    padding: 1rem;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
}

.verifiSucess {
    background-color: var(--greenEditLight);
    border-bottom: 1px solid var(--greenEdit);
    color: var(--greenEdit);
}

.verifiError {
    background-color: var(--primaryOrangeLight1);
    border-bottom: 1px solid var(--redDelete);
    color: var(--redDelete);
}

.verifiColumn > div:nth-child(2) {
    padding: 2rem;
}

.verifiCell > p {
    color: var(--primaryTextGrayDark-2);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}



/* css media queries ----- ----- */

@media only screen and (min-width: 560px) {
    .notSuccessText {
        padding: 2rem 3rem;
    }

    .cell {
        padding: 0.75rem 2rem; 
    }

    .mytable > p {
        padding-left: 2rem;
    }

    .mytext > p {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sec2Btn4 {
        padding: 0.75rem 3rem;
    }
}

@media only screen and (min-width: 768px) {
    .sec2 > .mytable, .notSuccessText, .verifiTable {
        width: 75%;
    }

    .cell, .mytext > p {
        font-size: 1.1rem;
    }
}


