@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Open Sans";
}
main{
    background: #F2F0F1;
    min-height: 100vh;
    width: 100%;
    padding: 70px 70px;
}
.wrapper {
    width: 60%;
    margin: 0 auto;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.content{
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    padding: 60px;
}
.v-center{
    display: grid;
    align-items: center;
    justify-content: center;
}
.link-btn{
    text-align: center;
    padding: 12px;
}
.link-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    border-radius: 30px;
    padding: 24px 48px;
    background: #008f9c;
    color: #fff;
    transition: 0.3s;
    user-select: none;
}
.link-btn a:hover{
    background: #008f9cdd;
}
.link-btn a:hover svg{
    transform: scale(1.1);
}


.page-heading{
    font-weight: 700;
    font-size: 35px;
    line-height: 1.5;
}
.page-desc-text{
    font-size: 18px;
    color: #656565;
    line-height: 1.5;
    width: 70%;
}


.form-content{
    margin-top: 50px;
}
.input-container{
    margin-bottom: 25px;
}
form label {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: lowercase;
    text-transform: capitalize;
}
input[type="text"],
input[type="number"],
input[type="tel"]{
    border: solid 2px #e6e6e6;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 48px;
    font-size: 14px;
    color: #000;
    padding: 0 15px;
    transition: 0.4s ease;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus{
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    border-color: #008f9c;
    outline: none;
}
.req-mark{
    color: #008f9c;
}

.has-prefix{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.has-prefix input{
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: 0.1s;
    width: calc(100% - 59px) !important;
    color: #000 !important;
}
.input-prefix{
    border-radius: 5px;
    background-color: rgb(236, 240, 249);
    width: 59px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgb(101, 101, 101);
    font-weight: 500;
    border: solid 2px rgb(236, 240, 249);
    user-select: none;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.has-prefix input:focus{
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    outline: none;
    border: 2px solid #008f9c;
    border-radius: 5px;
}
.input-box .error{
    display: block;
    font-weight: 400;
    width: 100%;
    color: #58151c;
    margin: 5px 0;
}

.bg-error{
    padding: 15px;
    background: #f1aeb559;
    border-radius: 5px;
    border: 1px solid #f1aeb5;    
}

button[type=submit]{
    background-color: #008f9c;
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    padding: 0 64px;
    height: 53px;
    border-radius: 50px;
    font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    transition: 0.4s ease;
    text-transform: uppercase;
    border: solid 2px transparent;
    user-select: none;
}
.cta-btn{
    background-color: #008f9c;
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    padding: 16px 64px;
    text-decoration: none;
    display: inline-block;
     font-size: 15px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    border-radius: 30px;
    user-select: none;
}
.back-btn{
    background-color: #eaeaea;
    box-shadow: 0px 7px 65px 0px rgba(0, 0, 0, 0.07);
    padding: 16px 64px;
    text-decoration: none;
    display: inline-block;
     font-size: 15px;
    color: #2a2a2a;
    font-weight: 600;
    border-radius: 30px;
    user-select: none;
}
.submit-btn-container{
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn-container{
    padding-top: 60px;
    text-align: center;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.flex-v-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    /* align-items: center; */
}

@media screen and (max-width: 1160px) {
    .wrapper {
        width: 70%;
    }
}

@media screen and (max-width: 992px) {
    .wrapper {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .wrapper {
        width: 100%;
    }
    main{
        padding: 40px 10px;
    }
    .content{
        padding: 40px 15px;
        min-height: 350px;
    }
    .with-space{
        padding: 40px 20px;
    }
    .link-btn{
        padding: 10px 0;
    }
    .link-btn a{
        padding: 15px 22px;
        font-size: 12px;
        gap: 6px;   
        text-align: left;    
    }
    .link-btn a svg
    {
        height: 16px;
        width: 16px;
    }

    .page-heading{
        font-size: 28px;
        line-height: 1.5;
    }
    .page-desc-text{
        width: 100%;
    }
    .form-content{
        margin-top: 30px;
    }
    .input-container{
        margin-bottom: 20px;
    }
}