
.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
}

.login-form h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus {
    border-color: #4b6cb7;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: #4b6cb7;
    background: #fff;
    padding: 0 5px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #4b6cb7;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #395591;
}

.register-link {
    margin-top: 1rem;
    font-size: 14px;
}

.register-link a {
    color: #4b6cb7;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

.btn-guindo {
    background: linear-gradient(45deg, #800020, #a93226);
    border: none;
    color: white !important;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.btn-guindo:hover {
    background: linear-gradient(45deg, #5c0015, #922b21);
    transform: scale(1.05);
    color: #fff !important;
}

.btn-guindo-logi {
    background: linear-gradient(45deg, #CF3411, #A92731);
    border: none;
    color: rgb(253, 225, 182) !important;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.btn-guindo-logi:hover {
    background: linear-gradient(45deg, #CF3411, #A92731);
    transform: scale(1.05);
    color: #fff !important;
}

.text-guindo {
  color: #94092c; /* Código hexadecimal para guindo oscuro */
}

.bg-estilo-crema {
    background-color: #fcf6e8;
}