 /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

/* Container styles */
.container {
    width: 100%;
    max-width: 925px;
    padding: 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Logo styles */
.logo {
    width: 140px;
    height: auto;
    margin-bottom: 35px;
}

/* Header styles */
h1 {
    font-size: 41px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

/* Status text styles */
.status-text {
    font-size: 20px;
    color: #303030;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 400;
}

.status-text-frm {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    vertical-align: middle;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form styles */
.form-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.checkbox-group {
    margin-bottom: 16px;
    width: 100%;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 4px 0;
    width: 100%;
}

.checkbox-input {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #3B5998;
    border-radius: 4px;
    position: relative;
    background: white;
    flex-shrink: 0;
}

.checkbox-input:checked {
    background: #3B5998;
}

.checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-input:hover {
    border-color: #2d4373;
}

.checkbox-text {
    flex: 1;
}

.checkbox-title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 17px;
    color: #19233DDE;
    margin-bottom: 3px;
    font-weight: 400;
}

.checkbox-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    font-weight: normal;
}

.header-logo {
    padding: 0px 0px 20px 0px;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}
.header-logo img {
    width: auto;
}

/* Button styles */
.save-button {
    background-color: #3B5998;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 auto;
    display: inline-block;
}

.save-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.form-container {
    background: #f4f4f4;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 32px 24px;
    }

    h1 {
        font-size: 24px;
    }

    .logo {
        width: 120px;
        margin-bottom: 30px;
    }

    .checkbox-input {
        width: 18px;
        height: 18px;
    }

    .checkbox-title {
        font-size: 14px;
    }

    .checkbox-description {
        font-size: 13px;
    }
}
.success-submit {
    color: #303030;
    font-size: 16px;
}