/* body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;

  background: 
    linear-gradient(rgba(0, 0, 0, 0.105), rgba(0, 0, 0, 0.105)),
    url('/images/loginbg.webp') no-repeat center center fixed;
        background-size: cover;
    background-color: #f5f5f5;
} */

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background-color: #c4c3ca;
}

.form-group input:-ms-input-placeholder {
    color: #767578;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input::-moz-placeholder {
    color: #767578;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:-moz-placeholder {
    color: #767578;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input::-webkit-input-placeholder {
    color: #767578;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus:-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 4px solid #E67900;
    padding: 2rem;
    padding-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.logo {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -190%)
}


/* Icons */
.toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
.input-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}


/* .logo img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
} */

.form-control {
    border-radius: 5px;
    font-size: 1rem;
    padding: 0.75rem;
}

.btn {
    background: linear-gradient(to right, #E67900, #2a2a2a);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-primary {
    background: linear-gradient(to right, #E67900, #2a2a2a);
    border-color: #2a2a2a;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #2a2a2a, #E67900);
    border-color: #2a2a2a;
}

.btn-primary:disabled {
    background-color: #cccccc;
    border-color: #cccccc;
}

.forgot-password {
    color: #2f67bb;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Password Toggle Icon */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-toggle:hover {
    color: #4a6fa5;
}

.modal-content {
    border-radius: 10px;
    padding: 1.5rem;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    margin: 0 auto;
    color: #333;
}

.modal-body {
    padding-top: 0;
}

.cooldown-message {
    color: #d32f2f;
    text-align: center;
    font-size: 0.9rem;
}

.loader img {
    width: 40px;
    height: auto;
}

.status-message {
    margin-top: 10px;
    color: #555;
    font-size: 1em;
}



/* BTNs */

/* Dark Button */
.btn-chaabi-dark,
.btn-chaabi-dark:focus {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
}

.btn-chaabi-dark:hover,
.btn-chaabi-dark:active,
.btn-chaabi-dark.active {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
}

.btn-chaabi-dark:active {
    transform: scale(0.95);
}

/* Green Button */
.btn-chaabi-green,
.btn-chaabi-green:focus {
    background: #198754;
    border-color: #198754;
    color: #fff;
}

.btn-chaabi-green:hover,
.btn-chaabi-green:active,
.btn-chaabi-green.active {
    background: #146c43;
    border-color: #146c43;
    color: #fff;
}

.btn-chaabi-green:active {
    transform: scale(0.95);
}

/* Orange Button */
.btn-chaabi-orange,
.btn-chaabi-orange:focus {
    background: #E67900;
    border-color: #E67900;
    color: #fff;
}

.btn-chaabi-orange:hover,
.btn-chaabi-orange:active,
.btn-chaabi-orange.active {
    background: #cc6600;
    border-color: #cc6600;
    color: #fff;
}

.btn-chaabi-orange:active {
    transform: scale(0.95);
}

/* Outline / Inverted Button */
.btn-chaabi-outline,
.btn-chaabi-outline:focus {
    background: transparent;
    border-color: #E67900;
    color: #E67900;
    color: #fff;
}

.btn-chaabi-outline:hover,
.btn-chaabi-outline:active,
.btn-chaabi-outline.active {
    background: #E67900;
    color: #fff;
}

.btn-chaabi-outline:active {
    transform: scale(0.95);
}


/* Secondary Button */
.btn-chaabi-secondary,
.btn-chaabi-secondary:focus {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.btn-chaabi-secondary:hover,
.btn-chaabi-secondary:active,
.btn-chaabi-secondary.active {
    background: #5c636a;
    border-color: #5c636a;
    color: #fff;
}

.btn-chaabi-secondary:active {
    transform: scale(0.95);
}

.btn-secondary,
.btn-secondary:focus {
    background: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
    border-style: solid;
    border-width: 1px;
    transition: background 0.3s, border-color 0.3s;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary.active {
    background: #2a2a2a;
    border-color: #2a2a2a;
}