/* @import url("./materialdesignicons.min.css"); */


/* Fonts */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url('../fonts/Inter-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('../fonts/Inter-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter-Black';
    src: url('../fonts/Inter-Black.ttf');
    font-weight: 900;
    font-style: normal;
}

.inter-regular {
    font-family: "Inter";
}

.inter-medium {
    font-family: "Inter-Medium";
}

.inter-semibold {
    font-family: 'Inter-SemiBold';
}

.inter-bold {
    font-family: "Inter-Bold";
}

.inter-black {
    font-family: 'Inter-Black';
}

*,
 ::after,
 ::before {
    box-sizing: border-box;
    border-spacing: 0;
    outline: none;
}

a,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

.mt-30 {
    margin-top: 30px !important;
}

.pr-115 {
    padding-right: 115px !important;
}

html,
body,
main {
    font-family: 'Inter';
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    font-family: 'Inter';
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1366px;
}

header {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 15px;
    background: #FFFFFF;
    border-bottom: 1px solid #C7C9D9;
}

.container-wrapper {
    position: relative;
    padding: 20px 80px;
}

.container-wrapper h1 {
    font-family: "Inter-Bold";
    font-size: 19px;
    line-height: 23px;
    color: #1C1C28;
    text-transform: capitalize;
}

.container-wrapper p {
    font-family: 'Inter-SemiBold';
    font-size: 14px;
    line-height: 17px;
    color: #1C1C28;
    margin-top: 10px;
}

.content-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left-panel {
    position: relative;
    float: left;
    width: 55%;
}

.certificate-visual {
    position: relative;
    width: 100%;
    display: inline-block;
}

.certificate-visual img {
    width: 100%;
    max-width: 645px;
    vertical-align: top;
}

.right-panel {
    position: relative;
    float: right;
    width: 45%;
    padding-left: 60px;
}

.right-panel h2 {
    font-family: "Inter-SemiBold";
    font-size: 19px;
    line-height: 23px;
    color: #1C1C28;
    margin-bottom: 15px;
    font-weight: 500;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    height: 44px;
    background: #FAFAFA;
    border: 1px solid #E4E4EB;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: 'Inter';
    font-size: 19px;
    line-height: 23px;
    color: #000000;
}

.form-group.selected .form-control {
    color: #01A101;
}

.copy-link-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    display: flex;
    align-items: center;
    height: 42px;
    font-size: 19px;
    line-height: 23px;
    color: #4987F3;
    padding: 10px;
    cursor: pointer;
    background: #FAFAFA;
    border-radius: 0 8px 8px 0;
}


/* responsive layout css */

@media screen and (max-width:1023px) {
    .container-wrapper {
        padding: 15px;
    }
    .right-panel {
        padding-left: 15px;
    }
    .mt-30 {
        margin-top: 25px !important;
    }
}

@media screen and (max-width:767px) {
    .left-panel,
    .right-panel {
        width: 100%;
    }
    .left-panel {
        margin-bottom: 20px;
    }
    .certificate-visual img {
        max-width: 100%;
    }
    .container-wrapper {
        padding-bottom: 50px;
    }
}