main {  
    margin: 3rem auto;
    background-color: ghostwhite;
    padding-bottom: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    max-width: 22rem;
    width: 98%;
    overflow: hidden;
    position: relative;
}
form {
    padding-top: 1rem;
    padding-bottom: 0;
    display: grid;
    place-items: center;
    width: 100%;
}
/*  */
h1 {
    color: white;
    background-color: rgb(4, 26, 133);
    border-radius: 1rem 1rem 0 0;
    border: 0.05rem solid gray;
    border-bottom: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    text-align: center;
}
/*  */
.forgot-pwd {
    text-align: center;
    font-size: 0.8rem;
}
form fieldset {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem;
    border: 0.05rem solid rgba(128, 128, 128, 0.544);
    border-bottom: none;
    width: 17rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.input-container {
    margin-top: 0.5rem;
    width: 17rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input-container input {
    border-radius: 0.5rem;
    border: 0.05rem solid gray;
    background-color: white;
}
form fieldset legend {
    color: #000000;
    font-size: 0.8rem;
}
.p-type-label {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(87, 87, 87, 0.588);
    max-width: 6.5rem;
    width: 100%;
}
.p-type-label p {
    margin: 0.5rem 0px;
    display: flex;
    gap: 0.25rem;
}
.p-type-label img {
    margin-top: 0.15rem;
    max-width: 2rem;
    width: 70%;
}
.p-type-label input[type='radio'] {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.15rem;
}
/*  */
input[type="radio"] {
    opacity: 1;
    position: relative;
}
input[type="radio"]:checked + label {
    color: default;
    background-color: default;
}
.verification-txt {
    font-size: 0.8rem;
    color:#009f0d;   
}
.submit-btn-shared {
    margin-bottom: 1rem;
}
.no-acc-div {
    align-items: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
}
.no-acc-div div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.no-acc-div p {
    color: black;
}
