* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.page {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 3vw;
    align-items: center;
    width: 100vw;
    margin: 0 100px;
}

@media (max-width: 1100px) {
    body {
        height: 1100px;
    }
    .page {
        grid-template-columns: 1fr;
        row-gap: 10vh;
    }
    .opt-img {
        height: 60vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .opt-img img {
        max-height: 100%;
    }
}


.opt-img {
    max-width: 100%;
}
.opt-img img {
    max-width: 100%;
    box-shadow: 0 0 20px rgb(0, 174, 255);
    border-radius: 20px;
    transition: width 1s ease-in;
}
.tittle {
    height: 100%;
    min-height: 400px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgb(0, 174, 255);
    border-radius: 20px;
    font-family: 'Roboto';
}
.mobile-num-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tittle-head {
    font-size: 50px;
    margin: 20px 0;
}
.changing-card {
    display: flex;
    justify-content: center;
    align-items: center;
}
.send-info {
    color: rgb(135, 126, 126);
    margin: 15px auto;
    font-size: 18px;
    text-align: center;
}
.number-card p {
    margin: 15px auto;
    color: rgb(135, 126, 126);
    font-size: 16px;
    text-align: center;
}
.number-card input {
    outline: none;
    border: 0;
    border-bottom: 3px solid blue;
    border-radius: 2.8px;
    margin: 15px 0;
    padding: 10px 10px 5px 10px;
    text-align: center;
    font-size: 24px;
    font-family: 'Inconsolata';
    font-weight: bold;
    margin: 0 0 20px 0;
}
.declare-num button {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 8px;
    background-color: blue;
    color: white;
    border: 1.5px solid transparent;
    text-transform: uppercase;
    font-family: 'Roboto';
}
.declare-num button:hover {
    background-color: rgb(64, 64, 255);
}
.declare-num button:active {
    background-color: white;
    color: blue;
    border: 1.5px solid blue;
    font-size: 16px;
    transition: background-color 0.05s ease-in;
}





.otp-card ,
.otp-main-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}
.otp-digit6 {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}
.otp-digit6 input {
    height: 40px;
    width: 40px;
    font-size: 20px;
    text-align: center;
    border: 1px solid rgb(203, 203, 203);
    border-radius: 4px;
    outline: none;
}
.otp-digit6 input:focus {
    box-shadow: 0 0 20px rgb(198, 198, 198);
    border-bottom: 3px solid blue;
}

.otp-main-card p span {
    font-weight: bold;
}
.otp-main-card p {
    font-size: 18px;
    margin-bottom: 12px;
}
.opt-error p {
    margin: 12px 0;
    font-size: 15px;
}

.opt-error p a {
    text-decoration: none;
    font-weight: 500;
}
.opt-error p a:hover {
    text-decoration: underline;
}

.verify-but-card button {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 8px;
    background-color: blue;
    color: white;
    border: 1.5px solid transparent;
    text-transform: uppercase;
    font-family: 'Roboto';
}
.verify-but-card button:hover {
    background-color: rgb(64, 64, 255);
}
.verify-but-card button:active {
    background-color: white;
    color: blue;
    border: 1.5px solid blue;
    font-size: 16px;
    transition: background-color 0.05s ease-in;
}







.new-password {
    display: flex;
    justify-content: center;
    align-items: center;
}
.verified-img {
    height: 90px;
}

.new-pass input , 
.con-new-pass input {
    outline: none;
    font-size: 17px;
    padding: 8px;
    border-radius: 8px;
    margin: 8px 0;
}
.con-new-pass {
    margin-top: 12px;
}
.con-but-card {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}
.con-but-card button {
    font-size: 16px;
    padding: 12px 30px;
    background-color: blue;
    color: white;
    border: 1.5px solid transparent;
    text-transform: uppercase;
    font-family: 'Roboto';
    border-radius: 8px;
}
.con-but-card button:hover {
    background-color: rgb(64, 64, 255);
}
.con-but-card button:active {
    background-color: white;
    color: blue;
    border: 1.5px solid blue;
    font-size: 16px;
    transition: background-color 0.05s ease-in;
}
.otp-error-hyperlink {
    margin-left: 50px;
}