
body {
    background-color: var(--lightmodegray);
}

main {
    min-height: 100vh;
    min-height: calc(100vh - 150px);
}

/* sec1 ----- ----- */

.sec1 {
    margin-bottom: 1rem;
    padding-top: 6rem;
    text-align: center;
}

.sec1 h1 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primaryBlue);
}

/* 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(--primaryBlue);
    font-weight: 500;
}

.bottomBorder {
    border-bottom: 1px solid var(--lightGrayBorder);
}

.alert {
    background-color: var(--primaryOrangeLight1);
    color: var(--redDelete);
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.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);
}

.loginText {
    text-align: center;
    margin-top: 2.5rem;
}

.loginText > p {
    color: var(--primaryTextGrayDark-2);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.loginText a {
    text-decoration: none;
    color: var(--primaryBlue);
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.loginText a:hover {
    color: var(--secondaryBlue);
}


/* css forgotpass ----- ----- */

.textHolder {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
}

.textHolder > p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primaryBlue);
}

.alertMessage {
    color: var(--redDelete);
    padding-left: 1rem;
    padding-top: 0.5rem;
}

/* css forgotpasserror ----- ----- */

.textHolderMessage {
    width: 90%;
    max-width: 500px;
    margin: 3rem auto 0 auto;
    text-align: center;
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 0.5rem;
}

.textHolderError {
    background-color: var(--primaryOrangeLight1);
}

.textHolderSuccess {
    background-color: var(--greenEditLight);
}

.textHolderError > p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--redDelete);
}

.textHolderSuccess > p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--greenEdit);
}

.flexAlignCent {
    justify-content: center;
    margin-top: 5rem;
}

/* css forgotpassedit ----- ----- */

.flexAlignEnd {
    justify-content: end;
    margin-top: 2rem;
}

/* css forgotpass success ----- ----- */


/* css media queries ----- ----- */

@media only screen and (min-width: 560px) {
    .cell {
        padding: 0.75rem 2rem; 
    }

    .mytable > p, .alertMessage {
        padding-left: 2rem;
    }

    .mytext > p {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sec2Btn4 {
        padding: 0.75rem 3rem;
    }

    .textHolder {
        padding: 2rem 2rem 1rem 2rem;
    }

    .textHolderMessage {
        padding: 2rem;
    }
}

@media only screen and (min-width: 768px) {
    .sec2 > .mytable, .textHolder, .textHolderMessage {
        width: 75%;
    }

    .cell, .mytext > p {
        font-size: 1.1rem;
    }
}



