@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import "file.css";

body {
    color: #000;
    font-family: "Lato", sans-serif;
    /*background-color: #040404;*/
    font-size: 13px;
    
    background-image: url('./img/bg.png');
    
    /* Settings to make it 100% */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: keeps image from scrolling */
    background-position: center;
    background-size: cover;
}

h1,h2,h3,h4,h5,h6{
    /*color: rgb(60, 74, 91);*/
}
h4, .h4 {
    font-size: 30px;
}

button {
    
}
.bg-primary-2, .bg-primary-2:hover {
    background-color: #FF37C7;
}
.bg-gray-2, .bg-gray-2:hover {
    background-color: #F2F2F2;
}
.bg-success-2 {
    background-color: #11D7A3;
}
.bg-success-2:hover{
    background-color: lightseagreen;
}


/* The base button class */
.btn-gray {
    /* Apply your color */
    background-color: #F2F2F2 !important;
    color: #333333; /* Dark text for contrast */
    
    /* Layout and Spacing */
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #D1D1D1 !important; /* Light border for definition */
    border-radius: 6px;
    
    /* Typography */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: sans-serif;
}

/* Hover state (Slightly darker for feedback) */
.btn-gray:hover {
    background-color: #E5E5E5;
    border-color: #C0C0C0;
}

/* Active state (The "click" effect) */
.btn-gray:active {
    background-color: #D9D9D9;
    transform: translateY(1px);
}

.text-primary-2 {
    color: #4056F4;
}

.text-primary-3 {
    color: #FF37C7;
}

.key_input {
    background-color: #F9F9F9;
    border: 1px solid #d6dee9;
    border-radius: 20px;
    font-size: 13px;
}



/*
.header_link {
    display: block;
    @media(max-width: 768px) {
        display: none;
    }
}


.bg-primary-2 {
    background-color: rgb(73, 204, 104);
    border-color: rgba(0, 0, 0, 0);
}

    


.form .inputField {
    position: relative;
}

.form .inputField label {
    position: absolute;
    top: -11px;
    left: 2%;
    background-color: white;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 600;
}

.form .inputField input {
    height: 55px;
    border: 1px solid #bccad8;
    border-radius: 8px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(13,110,253,.25)
}*/

/*



.login_bg_img {
    height: calc(100vh - 61px);
    width: 100%;
    background-position: center ;
    background-size: cover;
    background-image: url('./img/bg.jpg');
    @media (max-width: 768px) {
        display: none;
    }
}


.login_form_bg_img {
    height: calc(100vh - 61px);
    background-position: center ;
    background-size: cover;
    background-image: none;
    @media (max-width: 768px) {
        width: 100%;
        background-image: url('./img/bg.jpg');
    }
}
.border-line {
    width: 40px;
    height: 4px;
    margin: 24px 0px;
    border-radius: 20px;
    background: rgb(1, 188, 141);
    background-clip: border-box;
}


input.form-control {
    border-radius: 0px;
}

.form-control:focus {
    border-color: #ccc;
    box-shadow: none ;
}*/
