* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: url('IMAGE KARENDERYA.PNG') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: brightness(70%);
}


/* Global body styling with background image */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('IMAGE KARENDERYA.PNG') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    filter: brightness(80%); /* Darkens the background */
    overflow: hidden;
}

/* Overlay to darken the background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 244, 244, 0.123); /* Semi-transparent overlay */
    z-index: 1;
}

/* Form container */
.container {
    position: relative;
    z-index: 2; /* Ensure form is above the background and overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Form styling */
.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3; /* Ensure form stays above everything */
    max-width: 400px;
    width: 100%;
    position: relative;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000ee;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

p {
    text-align: center;
    margin-top: 20px;
}

/* Fake reCAPTCHA Box */
.fake-recaptcha {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    position: relative;
}

/* Hide the checkbox */
.fake-recaptcha input[type="checkbox"] {
    margin-right: 10px;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    display: none;
    visibility: hidden;
}

/* Custom checkbox styles */
.fake-recaptcha .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.fake-recaptcha .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.fake-recaptcha .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
}

.fake-recaptcha .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.fake-recaptcha .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506eec;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.fake-recaptcha .cbx span:last-child {
    padding-left: 8px;
}

.fake-recaptcha .cbx:hover span:first-child {
    border-color: #506eec;
}

/* When checkbox is checked */
.fake-recaptcha .inp-cbx:checked + .cbx span:first-child {
    background: #506eec;
    border-color: #506eec;
    animation: wave-46 0.4s ease;
}

.fake-recaptcha .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.fake-recaptcha .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

/* Keyframes for the checkbox animation */
@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}

/* Additional existing styles */
.fake-recaptcha label {
    font-size: 14px;
}

.recaptcha-badge {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 12px;
    color: #555;
}

.recaptcha-badge img {
    height: 14px;
    margin-left: 5px;
}

