/* Start body - main */
section {
    padding: 100px;
}

@media (max-width:480px) {
    section {
        padding: 20px;
    }
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 10px;
}

.main h2 {
    color: white;
    font-size: 1.4em;
    font-weight: 500;
}

.main h2 span {
    color: rgb(3, 3, 236);
    font-size: 3em;
    text-align: justify;
}

.main h3 {
    color: rgb(216, 219, 173);
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: justify;
}

.main-btn {
    color: white;
    background-color: rgb(4, 4, 238);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.9357em 2.1875em;

    letter-spacing: 0rem;
    border-radius: 15px;
    margin-bottom: 40px;
    transition: 0.7s ease;
}

.main-button {
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width:480px) {
    .main-button {
        flex-direction: column;
        gap: 5px;
    }

    .main-btn {
        margin-bottom: 10px;
    }

    .main h2 {
        color: white;
        font-size: 0.9em;
        font-weight: 700;
    }

    .main h2 span {
        color: rgb(3, 3, 236);
        font-size: 1.8em;
        text-align: justify;
    }

    .main h3 {
        font-size: 1.4em;
        font-weight: 700;
    }

    .waviy span {
        font-size: 1.4rem;
        text-transform: uppercase;
    }
}

.main-btn:hover {
    background-color: darkblue;
    transform: scale(1.1);
}

.waviy {
    color: rgb(241, 224, 66);
    margin: 5px;
}

.waviy span {
    font-family: "Baloo Thambi", cursive;
    font-weight: 600;
    display: inline-block;
    font-size: 2rem;
    text-transform: uppercase;
    animation: waviy 1s infinite;
    animation-delay: calc(.1s * var(--i));
}

@keyframes waviy {

    0%,
    40%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-20px);
    }
}

.container {
    position: relative;
    margin-left: 110%;
}

.floating-image {
    position: absolute;
    transform: translateY(-50%);
    width: 650px;
    height: 500px;
    border-radius: 40px;
}

.floating-image {
    animation-name: float;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(16px 7px 8px rgb(105, 105, 252));
    opacity: 0.7;
}

@media(max-width:768px) {
    .floating-image {
        display: none;
    }
}

@media(min-width:769px) and (max-width:1199px) {
    .floating-image {
        width: 250px;
        height: 250px;
    }
}

@keyframes float {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-60%);
    }

    100% {
        transform: translateY(-50%);
    }
}


.rating input {
    display: none;
    margin: 15px;
}

.rating label {
    float: left;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
}

.rating label:before {
    content: '\2605';
    font-size: 30px;
}

.rating input:checked~label,
.rating label:hover,
.rating label:hover~label {
    color: #e5ff00;
    transition: color 0.3s;
}


.title {
    display: flex;
    justify-content: center;
    color: rgb(7, 7, 219);
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
    transition: 0.2s all ease;
}


@media (max-width:480px) {
    .title {
        color: rgb(7, 7, 219);
        font-size: 1.5em;
        font-weight: 600;
        text-align: center;
    }
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card-1 {
    position: relative;
    width: 300px;
    height: 350px;
    background: #0000;
    display: flex;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease-in-out;
    border-radius: 30px;
}

.card-1:hover {
    width: 600px;
}

.card-1 .imgBx {
    position: relative;
    min-width: 300px;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.card-1 .imgBx img {
    max-width: 250px;
    transition: 0.5s ease-in-out;
}

.card-1:hover .imgBx img {
    transform: rotate(-35deg) translateX(-20px);
}

.imgBx .icon {
    font-size: 4em;
    color: rgb(7, 7, 219);
    position: absolute;
    transform: translateY(-50%);
}



.card-1:hover .imgBx .icon {
    color: #8f04a1;
}

.card-1:hover .imgBx .icon ::before {
    color: #8f04a1;
}

.imgBx h3 {
    color: rgb(7, 7, 219);
    font-size: 1.4em;
    font-weight: 700;
    margin-top: 120px;
}

@media (max-width:480px) {
    .imgBx h3 {
        font-size: 0.9em;
        font-weight: 700;
        margin-top: 50px;
    }
}

.card-1 .details {
    position: absolute;
    left: 0;
    width: 300px;
    height: 100%;
    background: #258fd6;
    display: flex;
    border-radius: 14px;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    transition: 0.5s ease-in-out;
}

.card-1:hover .details {
    left: 300px;
}

.card-1 .details::before {
    content: '';
    position: absolute;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
}

@media (max-width:480px) {

    .card-1:hover .details {
        top: 350px;
        z-index: 1;
        left: unset;
    }

    .card-1 .details::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        width: 0;
        height: 0;
        transform: rotateZ(90deg);
    }
}


.card-1 .details h3 {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
}

.card-1 .details p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

.card-1.details h3 span {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.70;
}

.card-1 .details h5 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card-2 {
    background-color: white;
    width: 17.6em;
    box-shadow: 0 8px 25px rgba(1, 1, 1, 0.35);
    border-radius: 17px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
    font-size: 20px;
    font-family: Calibri;
    position: relative;
    overflow: hidden;
    border-top: 0;
    transform: translateY(0);
    border-right: 8px blue solid;
}

.card-2 .icon {
    color: rgb(44, 44, 253);
    transition: transform 1.8s ease;
}

.card-2:hover {
    transform: translateY(-1em);
    border-right-color: #8f04a1;
}

.card-2:hover .icon {
    color: #8f04a1;
    transform: rotate(360deg);
}

.card {
    background-color: white;
    width: 17.60em;
    box-shadow: 0 8px 25px rgba(1, 1, 1, 0.35);
    border-radius: 17px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
    font-size: 15px;
    font-size: 20px;
    font-family: Calibri;
    position: relative;
    overflow: hidden;
    border-bottom: 4.50px solid rgb(118, 8, 151);

}

.card::before,
.card::after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #0365a7;
    transition: transform 0.7s ease;
}

.card::before {
    right: 0;
    transform-origin: bottom right;
    transform: scaleY(0);
}

.card::after {
    left: 0;
    transform-origin: top left;
    transform: scaleY(0);
}

.card:hover::before {
    transform: scaleY(1);
}

.card:hover::after {
    transform: scaleY(1);
}

.card:hover {
    transform: scale(1.1);
    background-color: rgb(250, 250, 255);
}

.card-content {
    padding: 20px;
    color: black;
    transition: transform 0.5s ease;
}

.card:hover .card-content {
    transform: skew(0, 0deg);
}

.card:hover .card-content {
    transform: skew(0, 10deg);
}


.card-content {
    transform: skew(0, 10deg);
    padding: 20px;
    color: white;
}

.icon {
    color: rgb(7, 7, 219);
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
}

.info {
    text-align: center;
}


.card:hover .icon {
    color: #8f04a1;

}

.card:hover .icon ::before {
    color: #8f04a1;

}

.info h3 {
    color: rgb(7, 7, 219);
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}


.info button {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid rgb(45, 148, 4);
    border-radius: 30px;
    overflow: hidden;
    color: rgb(8, 163, 41);
    transition: color 0.4s 0.3s ease-out;
    text-align: center;
}



.info button::before {
    position: absolute;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.info button:hover {
    color: #fff;
    border: 2px solid rgb(3, 158, 73);
}

.info button:hover::before {
    box-shadow: inset 0 0 0 10em rgb(31, 175, 2);
}


.info img {
    display: none;
    width: 300px;
    height: 220px;
    margin: auto;
    margin-top: 10px;
}

.card:hover .info button {
    color: #fff;
    border: 2px solid rgb(3, 158, 73);
}

.card:hover .info button::before {
    box-shadow: inset 0 0 0 10em rgb(31, 175, 2);
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
}

.portfolio-item {
    perspective: 1000px;
    width: 18%;
    margin: 11px;
}

@media(max-width:768px) {
    .info img {
        width: 245px;
        height: 180px;
    }

    .portfolio-item {
        width: 73%;
        margin-top: 98px;
    }
}

.portfolio-bg {
    transform: rotateY(55deg);
    transition: transform 0.5s ease;
    width: 130%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(1 1 1 / 35%);
}

.portfolio-description {
    background-color: #1f1f1f;
    color: white;
    font-size: 25px;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 150px;
    left: 35px;
    box-shadow: 0 0 15px #000;
    transform: rotateY(55deg) translateZ(60px);
    transition: 0.5s ease;
    text-align: center;
    height: 180px;
    overflow: hidden;
    border-radius: 7px;

}

.portfolio-description h4 {
    text-align: center;
    text-transform: uppercase;
}

.portfolio-description p {
    font-size: 18px;
    line-height: 25px;
}

.portfolio-item:hover .portfolio-bg,
.portfolio-item:hover .portfolio-description {
    transform: rotateY(0deg) translateZ(0px);
}

.portfolio-grid:hover .portfolio-item .portfolio-bg {
    opacity: 0.5;
}

.portfolio-grid:hover .portfolio-item:hover .portfolio-bg {
    opacity: 1;
}

.portfolio-grid:hover .portfolio-item .portfolio-description {
    transform: rotateY(50deg) translateZ(60px);
    opacity: 0.5;
}

.portfolio-grid:hover .portfolio-item:hover .portfolio-description {
    transform: rotateY(0deg) translateZ(0px);
    opacity: 1;
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.contact-img {
    width: 500px;
    height: 400px;
    animation-name: contact-img;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    margin-top: 50%;
    border-radius: 900%;
}


.wave-group {
    position: relative;
    font-family: Arial;
}

.wave-group .input {
    font-size: 16px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 450px;
    border: none;
    border-bottom: 1px solid #515151;
    background: transparent;
    margin-top: 55px;
    margin-bottom: 70px;
    text-align: center;
}

.wave-group .input:focus {
    outline: none;
}

.wave-group .label {
    color: #8f8e8e;
    font-size: 25px;
    font-weight: 550;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    display: flex;
    font-family: Times New Roman;
}

.wave-group .label-char {
    transition: 0.2s ease all;
    transition-delay: calc(var(--index) * .05s);
}

.wave-group .input:focus~label .label-char,
.wave-group .input:valid~label .label-char {
    transform: translateY(-25px);
    font-size: 32px;
    color: rgb(7, 7, 209);
    font-weight: 650;
    font-family: Times New Roman;
}


.send {
    font-family: inherit;
    font-size: 18px;
    background: rgb(8, 8, 235);
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 17px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 10px;
}

#contact-me a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #0368ac;
    margin-top: 30px;
}

#contact-me a:hover {
    color: rgb(3, 180, 180);
}


#contact-me {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-me .title {
    width: fit-content;
    position: relative;
}

#contact-me .title::before {
    content: "";
    display: block;
    background: #F9A727;
    width: 40%;
    height: 3px;
    position: absolute;
    top: -20px;
    left: -20px;
    border-radius: 10px;

}

#contact-me .title::after {
    content: "";
    display: block;
    background: #F9A727;
    width: 40%;
    height: 3px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    border-radius: 10px;
}

.send span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.send svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.send:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.send:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.send:hover span {
    transform: translateX(5em);
}

.send active {
    transform: scale(0.95);
}

@media(max-width:480px) {
    #contact-me {
        margin-top: 100px;
    }

    .contact-container {
        display: block;
    }

    .contact-img {
        width: 350px;
        height: 250px;
        margin-top: 200px;
    }


    .wave-group .input {
        font-size: 12px;
        padding: 7px 7px 7px 3px;
        width: 85%;
        margin: auto;
        background: transparent;
        margin-top: 55px;
        margin-bottom: 70px;
        text-align: center;
    }


    .wave-group .label {
        font-size: 14px;
        font-weight: 350;
        left: 12%;
        top: 10px;
        display: flex;
        font-family: Times New Roman;
    }

    .wave-group .label-char {
        transition: 0.2s ease all;
        transition-delay: calc(var(--index) * .05s);
    }

    .wave-group .input:focus~label .label-char,
    .wave-group .input:valid~label .label-char {
        transform: translateY(-25px);
        font-size: 20px;
        color: rgb(7, 7, 209);
        font-weight: 650;
        font-family: Times New Roman;
    }

    .send {
        font-family: inherit;
        font-size: 14px;
        background: rgb(8, 8, 235);
        color: white;
        padding: 0.7em 1em;
        padding-left: 0.9em;
        display: flex;
        align-items: center;
        border: none;
        border-radius: 17px;
        overflow: hidden;
        transition: all 0.2s;
        cursor: pointer;

        margin-top: 30px;
        margin-left: 30px;
    }

    #contact-me a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        color: #0368ac;
        margin-top: 30px;
    }

    #contact-me a:hover {
        color: rgb(3, 180, 180);
    }

    .send span {
        display: block;
        margin-left: 0.3em;
        transition: all 0.3s ease-in-out;
    }

    .send svg {
        display: block;
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
        width: 18px;
    }

    .send:hover .svg-wrapper {
        animation: fly-1 0.6s ease-in-out infinite alternate;
    }

    .send:hover svg {
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

    .send:hover span {
        transform: translateX(5em);
    }

    .send active {
        transform: scale(0.95);
    }
}

@media(min-width:480px) and (max-width:768px) {


    .contact-img {
        width: 300px;
        height: 250px;
    }

    .wave-group .input {
        font-size: 18px;
        padding: 7px 7px 7px 3px;
        width: 80%;
        background: transparent;
        margin-top: 20px;
        margin-bottom: 40px;
        text-align: center;
    }


    .wave-group .label {
        font-size: 18px;
        font-weight: 350;
        left: -60px;
        top: 10px;
        display: flex;
        font-family: Times New Roman;
    }

    .wave-group .label-char {
        transition: 0.2s ease all;
        transition-delay: calc(var(--index) * .05s);
    }

    .wave-group .input:focus~label .label-char,
    .wave-group .input:valid~label .label-char {
        transform: translateY(-25px);
        font-size: 20px;
        color: rgb(7, 7, 209);
        font-weight: 650;
        font-family: Times New Roman;
    }

    .send {
        font-family: inherit;
        font-size: 14px;
        background: rgb(8, 8, 235);
        color: white;
        padding: 0.7em 1em;
        padding-left: 0.9em;
        display: flex;
        align-items: center;
        border: none;
        border-radius: 17px;
        overflow: hidden;
        transition: all 0.2s;
        cursor: pointer;
        margin-top: 30px;
    }

    #contact-me a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        color: #0368ac;
        margin-top: 30px;
    }

    #contact-me a:hover {
        color: rgb(3, 180, 180);
    }

    .send span {
        display: block;
        margin-left: 0.3em;
        transition: all 0.3s ease-in-out;
    }

    .send svg {
        display: block;
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
    }

    .send:hover .svg-wrapper {
        animation: fly-1 0.6s ease-in-out infinite alternate;
    }

    .send:hover svg {
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

    .send:hover span {
        transform: translateX(5em);
    }

    .send active {
        transform: scale(0.95);
    }
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

@keyframes contact-img {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-60%);
    }

    100% {
        transform: translateY(-50%);
    }
}

.message {
    background-color: rgb(250, 248, 248);
    border: 1px solid #bdc3c7;
    padding: 15px;
    border-radius: 45px;
    text-align: left;
    margin-left: 20%;
    margin-top: 7px;
    width: 60%;
}

.message.receiver {
    background-color: white;
    width: 60%;
}


.delete-btn,
.reply-btn {
    background-color: #e74c3c;
    color: white;
    width: 55px;
    border: none;
    padding: 8px;
    border-radius: 9px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    margin: 6px;
    transition: transform 0.7s ease;
}

.reply-btn {
    background: rgb(88, 167, 25);
}

.delete-btn:hover,
.reply-btn:hover {
    transform: scale(1.1);
}

.replyBox {
    width: 60%;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: transform 0.7s ease;
    position: relative;
    display: none;
}

.sendReplyBtn {
    background-color: #3684b8;
    color: white;
    width: 75px;
    border: none;
    padding: 10px;
    border-radius: 13px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.9s ease;

}

.replies {
    margin-top: 10px;
    padding-left: 20px;
}

.sendReplyBtn:hover {
    transform: scale(1.1);
}

@media (max-width:480px) {
    .message {
        padding: 7px;
        margin-left: 5%;
        margin-top: 7px;
        width: 87%;
    }

    .message.receiver {
        width: 80%;
    }


    .delete-btn,
    .reply-btn {
        width: 40px;
        padding: 4px;
        font-size: 11px;
    }




    .replyBox {
        width: 80%;
        padding: 10px;
    }

}

/* End body - main */
/* contact page setting */

.cont_form .content {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 70px;
}

.cont_form .content input {
    padding: 0.4rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 20px 0;
}

.cont_form .left textarea {
    resize: none;
    padding: 0.6rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.cont_form .right img {
    width: 520px;
    height: 350px;
}


.cont_form .left h3 {
    color: #2C74B3;
    position: relative;
    font-size: 30px;
    width: fit-content;
    font-family: jf_light;
    margin: 20px;
    margin-bottom: 50px;

}

.cont_form .left h3::before {
    content: "";
    display: block;
    background: #F9A727;
    width: 40%;
    height: 3px;
    position: absolute;
    top: -15px;
    left: -20px;
    border-radius: 10px;

}

.cont_form .left h3::after {
    content: "";
    display: block;
    background: #F9A727;
    width: 40%;
    height: 3px;
    position: absolute;
    bottom: -15px;
    right: -20px;
    border-radius: 10px;
}



.cont_form .left button {
    padding: 10px 50px;
    margin-top: 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    background-color: #2c74b3;
    padding: 8px 20px;
    outline: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

@media (max-width:480px) {
    .cont_form .content {
        gap: 30px;
    }

    .cont_form .content input {
        font-size: 0.5rem;
    }

    .cont_form .left textarea {
        font-size: 0.5rem;
    }

    .cont_form .right img {
        width: 300px;
        height: 150px;
    }


    .cont_form .left h3 {
        color: #2C74B3;
        position: relative;
        font-size: 30px;
        width: fit-content;
        font-family: jf_light;
        margin: 20px;
        margin-bottom: 50px;

    }

    .cont_form .left h3::before {
        content: "";
        display: block;
        background: #F9A727;
        width: 40%;
        height: 3px;
        position: absolute;
        top: -15px;
        left: -20px;
        border-radius: 10px;

    }

    .cont_form .left h3::after {
        content: "";
        display: block;
        background: #F9A727;
        width: 40%;
        height: 3px;
        position: absolute;
        bottom: -15px;
        right: -20px;
        border-radius: 10px;
    }


    .cont_form .left button {
        padding: 10px 50px;
        margin-top: 20px;
        border-radius: 8px;
        color: #fff;
        font-size: 15px;
        background-color: #2c74b3;
        padding: 8px 20px;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }
}