﻿:root {
    --preloader-background: #ffffff;
    --preloader-color: #47b2e4;
}


body {
    background-size: contain;
    overflow-y: hidden;
    background-image: url('../assets/img/helpdesk-ticketing-system-02.jpg');
   
}

.login-container {
    height: 500px;
    background-color: #DAE6F2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.btn-login {
    background-color: #004e92;
    color: whitesmoke;
    border: #004e92;
    width: 50%;
    padding: 5px;
    border-radius: 5px;
}

/*.forgot-password {
    text-align: right;
    margin-top: 10px;
}*/

/*Preloader css*/
#loadingScreen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #25b09b;
    animation: l15 1s infinite linear;
}

    .loader::before,
    .loader::after {
        content: "";
        grid-area: 1/1;
        margin: 2px;
        border: inherit;
        border-radius: 50%;
        animation: l15 2s infinite;
    }

    .loader::after {
        margin: 8px;
        animation-duration: 3s;
    }

@keyframes l15 {
    100% {
        transform: rotate(1turn)
    }
}


.text-danger {
    color: red;
    font-size: 12px;
    margin-top: 5px; /* Adds space between the input field and the error message */
}

.form-group {
    margin-bottom: 15px; /* Gives some space below each form group */
}

.col-md-8 {
    position: relative;
}

ul {
    list-style-type: none;
}

