﻿.backImgLogin {
    background-size: cover;
    background-repeat: space;
    width: 100%;
    height: 100%;
}
 
html {
    height: 100%;
}

body {
    min-height: 100%;
    height: 100%;
}

.section {
    height: 100%;
    width: 100%;
}

.loginCard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    min-height: 540px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 
.loginCardGuest {
    background: linear-gradient(0deg, hsla(199, 73%, 96%, 1) 30%, hsla(202, 76%, 95%, 1) 40%);
    width: 100%;
    max-width: 420px;
    min-height: 540px;
    padding: 15px;
}


.center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.ButtonLogin {
    width: 70%;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: bold;
    font-size: large;
}

 

.ButtonLoginSecondary {
    width: 70%;
    background-color: #4b4d4f !important;
    border-color: #4b4d4f  !important;
    font-weight: bold;
    font-size: large;
}

.linkLogin {
    font-size: small;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.linkLogin:hover {
    color:  var(--secondary-color);
}

.linkLogin:visited {
    color: var(--primary-color);
  }

.input-group {
    transition: all 0.3s ease;
    position: relative;
}

.input-group:hover {
    transform: translateY(-2px);
}

.input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 186, 137, 0.3);
}

.InputLogin {
    background-color: #FAFAFA !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Quitar el efecto de focus de Bootstrap en los inputs */
.form-control:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.InputLogin:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
    outline: 0 !important;
    background-color: #FAFAFA !important;
}

/* Si también quieres quitar el efecto del input-group-text */
.input-group-text {
    border-color: #ced4da !important;
}

/* Para asegurar que no haya efectos visuales al hacer focus */
.input-group:focus-within .form-control {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

.input-group:focus-within .input-group-text {
    border-color: #ced4da !important;
    box-shadow: none !important;
}

@media only screen and (max-width: 992px) {

    .center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px;
        margin-top: 50px;
    }
    
    .loginCard {
        min-height: auto;
        margin-bottom: 50px;
    }
    
    .floating-element {
        display: none;
    }
}

.validation-summary-errors ul, li {
    text-decoration: none;
    list-style:none;
}