body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}
.header-logo {
    width: 90px;
    height: 85px;
}
.header-title {
    color: #cacaca;
    font-size: 2.2rem;
    margin-bottom: 0;
    font-weight: normal;
}
.header-subtitle {
    color: #cacaca;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: normal;
}
.registration-header {
    max-width: 500px;
    margin: 10px auto;
}
.registration-container {
    max-width: 500px;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(177, 177, 177, 0.1);
    padding: 30px;
}
.form-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: left;
}
.form-control {
    padding: 12px;
    margin-bottom: 15px;
}
.password-field {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    overflow: visible;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.toggle-password img {
    width: 100%;
    height: 100%;
}
.mandatory-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: -10px;
    margin-bottom: 20px;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
}
.login-link, .home-link {
    text-align: center;
    margin-top: 15px;
    color:black;
}
.captcha-area {
    background-color: #f5f5f5;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 5px;
}  
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.alert-icon {
    font-size: 1.2rem;
}
.input-container {
    position: relative;
    display: inline-block;
}
.input-container::after {
    content: "*";
    color: red;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}
.mb-3 {
    position: relative; 
}
.required-mark-confimation {
    color: red; 
    position: absolute;
    left: 155px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark-confimation,
input:not(:placeholder-shown) + .required-mark-confimation {
    opacity: 0; 
}
.required-mark {
    color: red; 
    position: absolute;
    left: 165px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark,
input:not(:placeholder-shown) + .required-mark {
    opacity: 0; 
}
.required-mark-password {
    color: red; 
    position: absolute;
    left: 145px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark-password,
input:not(:placeholder-shown) + .required-mark-password {
    opacity: 0; 
}
.required-mark {
    color: red; 
    position: absolute;
    left: 165px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark,
input:not(:placeholder-shown) + .required-mark {
    opacity: 0; 
}
.required-mark-email {
    color: red; 
    position: absolute;
    left: 155px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark-email,
input:not(:placeholder-shown) + .required-mark-email {
    opacity: 0; 
}
.required-mark-password-origin {
    color: red; 
    position: absolute;
    left: 70px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
input:focus + .required-mark-password-origin,
input:not(:placeholder-shown) + .required-mark-password-origin {
    opacity: 0; 
}
input:focus + .required-mark-verification,
input:not(:placeholder-shown) + .required-mark-verification {
    opacity: 0; 
}
.required-mark-verification{
    color: red; 
    position: absolute;
    left: 158px; 
    top: 10px; 
    font-size: 18px;
    opacity: 1;
}
.form-control::placeholder {
    color: #9A9A9A;
}
.eye-icon {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}
.password-field {
    position: relative;
}

.d-flex {
    display: flex;
}
.align-items-stretch {
    align-items: stretch; 
}

.ms-2 {
    margin-left: 8px; 
}