/* Start Variables */
:root {
    --basic-color-1: #336;
    --basic-color-2: #000;
    --basic-color-3: #3a6cf4;
    --basic-color-4: #FFF;
    --basic-color-5: #4e9eff;
    --basic-color-6: #535353;
    --basic-line-height: 1.8;
    --basic-padding: 50px;
    --basic-transition: 0.5s;
}
/* End Variables */

/* Start Global Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

 

/* End Global Rules */
.show-error-message {
    visibility: visible !important;
}

.error-input {
    border: 1px solid #b00020 !important;
}

.success-input {
    border: 1px solid #2FCC71 !important;
}

.message-error-pages {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
    background-color: #fee9ea;
    color: #333;
    padding: 13px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.message-error-pages i {
    color:#F32735;
    font-size: 25px;
}

.message-error-pages span {
    margin-right: 10px;
}


.content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #f6f6f9;
    padding: 15px;
}

.captcha-container {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 500px;
    max-width: 100%;
}

.captcha-container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    background-color: #FFCC00;
    padding: 15px 10px;
    border-radius: 10px;
}

.captcha-container .logo img {
    width: 170px;
}

.captcha-container p {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
}

.captcha-container .captcha-text {
    font-size: 20px;
    font-weight: bold;
    margin: 10px auto;
    color: #D40511;
    width: 100%;
    text-align: center;
}

.captcha-container .captcha-input {
    border: 1px solid #949494;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 40px;
    padding: 10px;
    outline: 0px;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.captcha-container .captcha-input:focus {
    border: 2px solid #FFCC00;
}

.captcha-container .verify-btn {
    cursor: pointer;
    height: 40px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    background-color: #D40511;
    padding: 10px;
    border-radius: 10px;
    border: 0px;
    outline: 0px;
}

.captcha-container .result {
    margin-top: 10px;
    font-size: 15px;
    color: #ff0000;
    text-align: center;
    width: 100%;
    font-weight: 600;
    display: none;
}

.show-error-captcha-message {
    display: block !important;
}