@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: rgba(105, 0, 253, 1);
    color: #202020;
    height: 100vh;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Inter", sans-serif;
}
h2{
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}
h3{
     font-size: 25px;
    line-height: 35px;
    letter-spacing: 1px;
    font-weight: 500;
}
input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    border: 1px solid #E3E4E7;
    min-height: 45px;
    border-radius: 6px;
    padding: 5px 30px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
}
button{
    cursor: pointer;
}

label {
    color: rgba(4, 4, 4, 1);
    font-size: 17px;
    font-weight: 500;
}

input:focus {
    border-color: #a7a7a7;
    outline: none;
}
input::placeholder{
    color: rgba(148, 153, 165, 1);
}
.container {
    max-width: 1240px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.login-container {
    background-color: #ffffff;
    padding: 30px 25px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.rs-crm-integration-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.rs-crm-inner {
    width: 627px;
    min-height: 500px;
    padding: 40px 60px;
    border-radius: 24px;
    box-shadow: 0px 0px 6px 6px #0000001c;
    background: #fff;
    margin: 50px auto;
}
.rs-login-conn-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
}
.rs-h2-heading {
    margin-bottom: 30px;
}
.rs-h3-heading {
    width: fit-content;
    margin: auto;
    position: relative;
        margin-bottom: 10px;
}
.rs-h3-heading:after {
    content: '';
    position: absolute;
    height: 2px;
    background: blue;
    width: 100%;
    top: 100%;
    left: 0;
}
.login-form-wrap {
    padding: 30px 10px;
}
.rs-login-wrap {
    text-align: center;
}
.icon-input-wrap {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #E3E4E7;
    min-height: 56px;
    border-radius: 6px;
    gap: 10px;
}
.icon-input-wrap input {
    border: none !important;
    min-height: 0;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}
.icon-input-wrap span img {
    width: 22px;
}
.forget-pass-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.forgotPass {
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
    color: rgba(29, 59, 88, 1);
}
.remember-me label {
    color: rgba(120, 125, 136, 1);
    font-size: 16px;
}
.submitBtn {
    background: rgba(8, 95, 194, 0.9882);
    padding: 10px 20px;
    min-height: 55px;
    width: 100%;
    margin-top: 30px;
    border-radius: 6px;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
}
.submitBtn a{
 color: #fff;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    text-decoration: none;
}

/* ----- rest & zapier css------ */
.form-group {
    text-align: left;
}
.field-row {
    display: flex;
    gap: 20px;
    text-align: left;
}
.label-group input {
    margin-top: 5px;
}

.rest-zapier-option-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.rest-option {
    width: 100%;
    height: 50px;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: start;
    gap: 20px;
    border-radius: 10px;
    border: 2px solid rgba(217, 217, 217, 1);
    font-size: 18px;
    color: rgba(32, 32, 32, 1);
    font-weight: 600;
}
.rest-option input {
    width: 30px;
    height: 30px;
}
.rs-rest-wrap, .rs-zapier-wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none; 
}
.rs-rest-wrap.active, .rs-zapier-wrap.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; 
    position: relative;
}


/* ------- field mapping page css ------- */

.rs-apiConfig-fieldMapping-container {
    background: #fff;
    align-items: flex-start;
}
.rs-field-mapping-wrapper {
    width: 100%;
    height: 100%;
    margin: 50px 0;
}
.rs-reauth-wrap {
    text-align: center;
    padding: 10px;
    position: relative;
    margin-bottom: 50px;
}
.re-auth {
    float: right;
    width: auto;
    margin-top: 0;
    position: absolute;
    top: 10px;
    right: 0;
    padding: 5px 30px !important;
    min-height: 50px;
}
.rs-reauth-wrap h2 {
    margin-bottom: 0;
}
.api-config-wrap {
    border: 1px solid rgba(217, 217, 217, 1);
    box-shadow: 0px 4px 9px 0px rgb(0 0 0 / 11%);
    border-radius: 12px;
    margin-bottom: 60px;
    overflow: hidden;
} 
.box-head {
    padding: 10px 30px;
    background: rgba(245, 245, 245, 1);
}
.box-head h3 {
    font-size: 24px;
    font-weight: 700;
}
.box-body-wrap {
    padding: 30px;
}
.api-config-field-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}
.jsonBtn {
    margin-top: 0;
    max-width: 200px !important;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 45px !important;
    padding: 5px 20px !important;
}
.api-config-field-wrap input {
    width: 100%;
}
.api-config-field-wrap input {
    width: 100%;
    margin-bottom: 0;
    background: #fff;
}
.api-config-field-wrap label {
    min-width: 200px;
}

.box-body-wrap .field-row {
    gap: 40px;
}

.field-one-thrid {
    width: 33.33%;
}
.field-one-thrid input {
    margin-top: 10px;
}
.field-one-thrid input{
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 1)
}
.crmformsubmit-wrap {
    text-align: center;
}
.crmformsubmit {
    width: auto;
    margin-top: 0;
    padding: 10px 40px;
}

 .jsonModal {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
  }

 .jsonModalContent {
    background-color: #fff;
    margin: 10% auto;
    padding: 50px 30px;
    border-radius: 20px;
    width: 45%;
    box-shadow: 0px 0px 45px 6px rgba(0, 0, 0, 0.25);
}
.jsonText {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.backToLogin {
    margin-top: 40px;
}
.backToLogin a i {
    color: rgba(29, 59, 88, 1);
    margin-right: 10px;
}

#responseMsg {
    margin-top: 20px;
}
.astrick {
    color: red;
}
.start-call-wrap {
    min-height: 200px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}
.startCall {
    max-width: 200px;
}