main {
    grid-column: 1 / span 12;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.profile-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 15px;
}

.profile-section .heading-wrapper {
    width: 100%;
    display: flex;
}

.profile-section .heading-wrapper h1 {
    font-size: 25px;
    color: dimgray;
}

.profile-form {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.profile-box {
    padding: 15px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0px 0px 5px #0000001c;
    border-radius: 20px;
}

.input-grid-wrapper {
    width: 100%;
}

.otp-btn,
.otp-submit-btn,
.save-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: olive;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px;
    font-size: 16px;
}

.otp-btn i {
    font-size: 20px;
}

.otp-box {
    padding-top: 15px;
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #0000001c;
}

.otp-box.active {
    display: flex;
}

.otp-email-label {
    color: lightgray;
    font-size: 14px;
    align-self: start;
}

.otp-email-label i {
    color: skyblue;
}

.otp-submit-btn-wrapper {
    width: 100%;
    display: flex;
    gap: 15px;
}

.otp-submit-btn {
    background-color: red;
}

.footer-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e9e9e9;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .profile-section {
        width: 80%;
    }

    .profile-section .heading-wrapper h1 {
        font-size: 52px;
    }
}