
.texto-white{
    color: aliceblue;
}

.white{
    color: aliceblue;
}
.redondeo{
    border-radius: 30px;
}

.redondeot{
    border-radius: 30px, 30px, 0px, 0px;
}

.redondeob {
    border-radius: 0px, 0px, 30px, 30px;
}

.margen{
    margin-left: 170px;
}

.size30{
    font-size: 30px;
}
.bold{
    font-weight: bold;
}

.bg-edaltec{
    background-image: url(../img/it2.jpg);
    
}

.bg-admin{
    background-image: url(../img/gg.jpg);
    
}
.child-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
.text-black{
    color: black;
}
.text-orange{
    color: ORANGE;
}

.bg-400{
    background-color: #FB923C;
}

.bg-300{
    color:#fdba74;
}

.bg-degrade{
    background-color: #ffb12c
}
.bg-foto{
    background-image: url(../img/degrade.jpg);
    background-position: center;
  background-size: cover;
  background-repeat:no-repeat ;
  max-width: 100%;
    
}

.icono{
    width: 30px;
}

/*Diseño card animacion LOGIN*/
 /* Background and Form Styling */
.login-form {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    width: 370px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    justify-content: center;
}

.login-form:hover {
    transform: scale(1.05);
}

/* Input and Button Styling */
.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px  #F07400;
}

.login-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.8); /* Simplified background */
    color:  #F07400;
    border: 2px solid  #F07400;
    padding: 0.75rem 0;
    margin-top: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background:  #F07400;
    color: white; /* White text on hover */
    border-color: transparent; /* Border disappears on hover */
}

/* Checkbox and Title Styling */
.checkbox-label {
    user-select: none;
    color:black;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-label input {
    margin-right: 0.5rem;
}
 

