.login-row {
    margin-top: 200px;
    margin-bottom: 100px;
    border-radius: 20px;
    background-color: var(--primary-color);
}

.header-block.d-flex.align-items-center {
    background-color: #fff;
    border-radius: 18px;
    height: 70px;
}

.header-block h1 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.body-block {
    background-color: #fff;
    border-radius: 18px;
    padding: 20px;
}

label {
    color: var(--primary-color);
}

.btn-submit-login {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 20%;
    margin: 0 auto;
}

.btn-submit-login:hover {
    background-color: var(--primary-color);
    color: #fff;
}

a {
    color: var(--primary-color);
}

.placeholder-red::placeholder {
    color: #757575; /* Màu placeholder mặc định */
}

.placeholder-red::placeholder::after {
    content: "*";
    color: #ff0000; /* Màu đỏ cho dấu * */
}

.form-control {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
}

input[type="radio"].form-check-input:checked {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 2px white inset;
    background-image: none !important;
}

.form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    align-self: center;
}

@media (max-width: 767.98px) {
    .login-row {
        margin-top: 120px !important;
        width: 95%;
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 50px !important;
    }

    .btn-submit-login {
        width: max-content;
    }
}
