* {
    box-sizing: border-box;
    /* border: 1px solid red; */
}

.main_container {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
}

.logo_foont {
    font-family: 'Libre Baskerville', serif;
}

.card_container {
    border: 8px solid transparent;
    border-color: #4675A5;
    border-image-slice: 1;
    color: #000;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 99;
    width: 90%;
    margin: 1rem auto;
}

.logo_background {
    position: fixed;
    opacity: 0.3;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    width: 380px;
    z-index: -1;
}

.header {
    width: 80%;
    text-align: center;
    margin: 0px auto;
    padding: 1rem;
    font-weight: bolder;
}

.main_heading {
    position: relative;
    color: #4675A5;
    letter-spacing: 4px;
}

.main_heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #000, #000, #000, #000, #000);
    position: absolute;
    top: 100%;
}

.sub_heading {
    color: #4675A5;;
    font-weight: bolder;
    letter-spacing: 1px;
}

.letter_spacing_certification {
    letter-spacing: 6px;
    color: #4675A5;
}

.spacing {
    letter-spacing: 2px;
}

.spacing_1 {
    letter-spacing: 1px;
}

.presonal_info {
    text-align: left;
    margin: 0px auto;
}

.line_Height {
    line-height: 0.5;
}

.verified {
    color: #6C296E;
    font-family: 'Roboto', sans-serif;
}

.tick {
    width: 60px;
    height: 60px;
    border: 1px solid transparent;
    background-color: #6C296E;
    border-radius: 50%;
    margin: 8px auto;
    color: #fff;
    font-size: 2rem;
}

input{
    background: transparent !important;
    pointer-events: none;
}

@media (max-width:900px) {
    .card_container {
        width: 98%;
    }

    .header {
        width: 100%;
    }

    .sub_heading {
        color: #000;
        font-weight: bold;
        letter-spacing: 1px;
        font-size: 18px;
    }

    .website_font_size {
        font-size: 12px;
    }
}
