body {
    background-color: #d4b5a0;
    font-family: "Montserrat", sans-serif;
}

/* Form controls custom styling */
.form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: clamp(50px, 4.5vw, 76px);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

/* Password toggle button */
.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Checkbox custom styling */
.form-check-input {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #333;
}

.form-check-input:checked {
    background-color: #333;
    border-color: #333;
}

/* Login button hover effect */
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .footer-copyright,
    .logo-wrap {
        position: relative !important;
    }
}
.form-error {
    border-color: red !important;
    color: red !important;
    &::placeholder {
        color: red !important;
    }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}