/* Estilos específicos del login */
.company-logo {
    max-width: 250px;
    height: auto;
    max-height: 100px;
    animation: bounceIn 1s ease-in-out;
}

.login-box {
    display: flex;
    flex-direction: column;
    width: 400px;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transform: scale(0.8);
    animation: popIn 0.5s ease-in-out forwards;
    margin:50px auto 50px;
}

.login-logo {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 5px 0;
}

.login-logo a {
    display: block;
    text-align: center !important;
    justify-content: center !important;
    align-items: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: none !important;
}

.card-body {
    padding: 30px;
}

.login-card-body {
    padding: 20px;
}

.login-box-msg {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 30px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    transform: scale(1.05);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 30px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    transform: scale(1.1);
}

.icheck-primary {
    display: flex;
    align-items: center;
}

.icheck-primary input[type="checkbox"] {
    margin-right: 10px;
}

.icheck-primary label {
    margin: 0;
}

.alert-info {
    background-color: #e9f7fd;
    color: #31708f;
    border: 1px solid #bce8f1;
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    0% {
        opacity: 0;
        transform: scale(0.3) translate3d(0, -3000px, 0);
    }
    20% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(0.9);
    }
    60% {
        opacity: 1;
        transform: scale(1.03);
    }
    80% {
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-google {
    background-color: #ffffff;
    color: #444;
    border: 1px solid #dddddd;
    border-radius: 30px;
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-google:hover {
    background-color: #f1f1f1;
    transform: scale(1.05);
}

.google-logo {
    height: 20px; /* Adjusted height */
    margin-right: 10px;
}
.error-message {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    display: none;
}
