.login-container {
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 50px 40px 40px;
    border-radius: 30px;
    width: 100%;
    background-color: var(--primary-color);
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-header {
    color: #1a4681;
    font-size: 40px;
    font-weight: 700;
}

.login-label {
    font-size: 15px;
    margin-left: 15px;
    font-weight: 600;
}

.loginRegister-input, .loginRegister-input-custom {
    border-radius: 5px;
    outline: none;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #ffffff;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-color: var(--primary-color);
}

.login-form button[type="submit"] {
    padding: 15px 10px;
    border-radius: 0;
    background-color: #fff;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    border: none;
    outline: none;
}
.rgs-div p {
    font-size: 14px;
    font-weight: 300;
    display: flex;
    justify-content: end;
    align-items: center;
}
.rgs-div p button {
    font-size: 16px;
    margin-left: 15px;
}
.rgs-div p a{
    font-weight: 400;
    margin-left: 15px;
}
.login-form input::placeholder {
    color: #ffffff!important;
    opacity: 1; /* Optional: make sure it's fully visible */
}
.custom-checkbox span a {
    font-weight: 600;
}

.login-not-register-button {
    text-align: center;
    background-color: #1a4681;
    padding: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
}

/* Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    color: #ffffff;
}
.custom-checkbox a {
    color: #ffffff;
    font-weight: 400;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    display: inline-block;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 12px;
    border: 1px solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox span {
    margin-left: 8px;
}

.select-wrapper {
    border-radius: 5px;
  padding: 2px; /* thickness of border */
  /*background-image: linear-gradient(135deg, #ec7700, #264a8a);*/
  /*background-clip: padding-box, border-box;*/
  /*background-origin: border-box;*/
  /*display: inline-block;*/
  /*width: 100%;*/
}

.select-wrapper select.register-selecet {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    background-color: var(--primary-color);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../../front/img/select-bg.png");
    background-repeat: no-repeat;
    /*background-position: center;*/
    /*background-size: 12px 6px;*/
    background-position: right 1.2rem center;
    background-size: 20px;
    outline: none;
    cursor: pointer;
    border: 1px solid #ffffff;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.loginRegister-input::placeholder {
  color: #000 !important;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1020px) {
    /*.login-container {
        width: 80%;
    }*/
}

@media (max-width: 550px) {
    /*.login-container {*/
    /*    width: 90%;*/
    /*}*/
}

@media (max-width: 425px) {
    .modal-content-login {
        padding: 0 !important;
    }

    .custom-margin {
        margin-bottom: 1.2em !important;
    }
}
