body {
    font-family: Arial, sans-serif;
}
.div-container {
    display: flex;
    height: 130%;
    background: fixed;
}
.div-item {
    width: 50%;
    display: none; /* Inițial, containerul este ascuns pe toate dispozitivele */
    flex: 1;
    padding: 80px; /* Spațiere între celule */
    background-image: url('../imagini/findn.jpeg');  /*Adresa URL a imaginii de fundal */
    opacity: 0.8;
    background-repeat: no-repeat; /* Imaginea nu se repetă */
    background-size: cover; /* Imaginea acoperă întregul tabel */
}
.div-item1 {
    width: 50%;
    flex: 1;
    background: linear-gradient(to right, rgba(64, 108, 216, 0.6) 10%, rgba(211, 211, 211, 0.3) 100%);

}
/* Media query pentru dispozitive desktop*/
@media screen and (min-width: 768px) {
    .div-item {
        display: block; /* Afișează containerul doar pe dispozitive desktop cu lățimea minimă de 768px */
    }
}

.containerinreg {
    font-size: 16px;
    display: flex;
    justify-content: space-between; /* Distributes space between the items */
}
.boxinreg {
    width: 45%;
    padding: 20px;
    background-color: lightblue;
    border: 1px solid #000;
}

.form-container-index {
    width: 280px;
    padding: 15px;
    background-color: white;
    border-radius: 15px; /* Aici se setează colțurile rotunjite */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666666;
}

input[type=text], input[type=password]
{
    padding: 6px 12px;
    width: 277px;
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    border-bottom: 4px solid #0070d2; /* Make bottom border thicker and blue */
    appearance: none;
    border-radius: 4px;
}

input[type=text]:focus, input[type=password]:focus
{
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 6px rgb(134, 183, 254);;
}




.btn-log { display: inline-block;
    outline: none;
    cursor: pointer;
    padding: 0 16px;
    background-color: #0070d2;
    border-radius: 0.25rem;
    border: 1px solid #0070d2;
    color: #fff;
    font-size: 13px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    margin-top: 7px;
}
.btn-log:hover {
    background-color: #005fb2;
    border-color: #005fb2;
}

.extra-options {
    text-align: center;
    margin-top: 10px;
}

.extra-options a {
    color: dodgerblue;
    text-decoration: none;
}

.extra-options a:hover {
    color: royalblue;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    color: #0066FF;
    font-size: 13px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 170px;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 5px 5px;


    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext {
    top: -5px;
    left: 100%;
}

.status {
    background-color: #f0f0f0; /* Set your desired background color */
    border: 1px solid #333; /* Border style and color */
    border-radius: 10px; /* Rounded corners */
    width: 60%; /* Adjust the width as needed */
    margin: auto; /* Center horizontally */
    margin-top: 25px;
    padding: 8px; /* Add padding inside the border */
    text-align: center; /* Center text within the border */
    color: #FF0000;

}


#liniaAscunsa {
    display: none;
}


/* Style for the informational box */
.info-box {
    position: fixed; /* Sticks the box to a specific position on the screen */
    bottom: 20px;    /* Distance from the bottom */
    right: 20px;     /* Distance from the right */
    width: 250px;    /* Width of the box */
    padding: 15px;   /* Padding inside the box */
    background-color: #f1f1f1; /* Background color */
    border: 1px solid #ccc;    /* Border styling */
    border-radius: 8px;        /* Rounded corners */
    /*box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);  Subtle shadow */
    font-family: Arial, sans-serif; /* Font */
    color: #333;      /* Text color */
    z-index: 1000;    /* Ensures the box stays on top */
}
.info-box h4 {
    margin-top: 0;
    font-size: 16px;
    color: #ff0800;
}
.info-box p {
    margin: 0;
    font-size: 16px;
    color: #0070d2;
}
/* Optional close button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
}
.close-btn:hover {
    color: #ff0800;
}