body {
    font-family: 'Rubik', sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

.connect-box-container {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    padding: 25px;
}

.connect-box-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connect-box-title {
    font-size: 25px;
    color: #60898b;
    font-weight: 900;
    margin: 0;
}

.connect-box-subtitle {
    font-size: 10.5px;
    color: #555;
    text-align: center;
    margin-top: 5px;
}

.connectForm {
    margin-top: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 11px;
}

/*Always visible text input*/
.custom-reason-wrapper {
    margin-top: 20px;
}

.customReasonText {
    width: 100%;
    min-height: 100px;
    padding: 10px 12px;
    font-size: 11px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    box-sizing: border-box;
}

.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.submit-btn {
    font-size: 15px;
    color: #fff;
    border: none;
    font-weight: 900;
    border-radius: 5px;
    cursor: pointer;
    background-color: #28a745;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease, transform 0.2s ease;
    padding: 10px 15px;
}

.submit-btn:hover {
    background-color: #218838;
}

.form-group {
    margin-top: 20px;
}

.input-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.verify-btn,
.verified-label {
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    padding: 10px;
}

.verify-btn {
    background-color: #007bff;
    transition: background-color 0.2s;
}

.verify-btn:hover {
    background-color: #0056b3;
}

.verified-label {
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    font-weight: 900;
    padding: 10px;
}

.circle-timer {
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: bold;
    color: red;
}

/*jiifit-social-media*/
.follow-us-center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

:root {
    --c1: #FF0000;
    --c2: #FF7F00;
    --c3: #FFFF00;
    --c4: #00FF00;
    --c5: #0000FF;
    --c6: #8B00FF;
    --angle: 0deg;
    --d: 10s;
}

.jiifit-social-media {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
    border: 0.35rem solid;
    text-align: center;
    padding-bottom:10px;
    justify-content: center;    
    border-image: conic-gradient(
        from var(--angle), 
        var(--c1), 
        var(--c2) calc(1/6*1turn), 
        var(--c3) calc(2/6*1turn), 
        var(--c4) calc(3/6*1turn), 
        var(--c5) calc(4/6*1turn), 
        var(--c6) calc(5/6*1turn),
        var(--c1) calc(6/6*1turn)
    ) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}

.jiifit-social-media p {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #60898b;
    margin: 10px 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons a img {
    width: 18px;
    height: 18px;
}

.location-wrapper {
    display: flex;
    font-size: 13px;
    font-weight: 900;
    color: #555;
    margin-top: 10px;
}

.location-text {
    white-space: nowrap;
}

.office-address {
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

/*Popup after form submission*/
.connect-success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 9999;
    padding: 10px 15px;
}

.connect-success-message {
    font-size: 13px;
    font-weight: 900;
}



