  .navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .hero {
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: #fff;
    text-align: center;
  }
  
  .card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    border: none;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }

  .paddinglogindtxt-only { padding: 4px;} 

.login-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    min-height: 400px;
    padding: 1rem;
    margin: 0 auto;
    background-color: #1d1d1d; 
    background: linear-gradient(
        to top, 
        #0f0f0f 0%,    /* Comienza con negro en 0% */
        rgba(0, 0, 0, 0.3) 30%,  /* Negro semitransparente al 30% */
        #1d1d1d 100%  /* Termina en blanco al 100% */
    );
}


.login-container .login-content {
    width: 100%;
}

.login-content .login-subtitle {
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1rem;
    color: rgb(255, 255, 255);
} 

.login-content .login-subtitle>.subtitle-span { 
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
    color: rgb(255, 204, 105);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgb(255, 204, 105);
    background-image: linear-gradient(90deg, rgb(252, 170, 5) 2.68%, rgb(253, 229, 182) 61.25%, rgb(252, 170, 5) 104.69%);
}

.login-content .login-subtitle>.subtitle-span-add {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 3rem;
    color: rgb(255, 204, 105);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgb(255, 204, 105);
    background-image: linear-gradient(90deg, rgb(252, 170, 5) 2.68%, rgb(253, 229, 182) 61.25%, rgb(252, 170, 5) 104.69%);
}

.Box-login-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 400px;
    height: 100%;
    margin: 0 auto;
}
.InLogin-form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 100%;
    padding: 10px 1rem;
    margin: 0 auto;
    border-radius: 7px;
    background-color: #fff;
}

.login-content .login-form>form>.login-input {
    margin-bottom: 16px;
    width: 100%; 
}

.login-content .login-form>form.submitted input[type="email"]:invalid,
.login-content .login-form>form.submitted input[type="password"]:invalid,
.login-content .login-form>form.submitted input[type="text"]:invalid,
.login-content .login-form>form.submitted input[type="number"]:invalid,
.login-content .login-form>form.submitted input[type="tel"]:invalid {
    border: 1px solid rgb(255 0 0);
}

.login-content .login-form>form.submitted input[type="email"]:valid,
.login-content .login-form>form.submitted input[type="password"]:valid {
    border: 1px solid rgb(79 171 64);
}

.login-content .login-form #alert-message {
    -webkit-box-align: center;
    align-items: center;
    color: rgb(242, 242, 242);
    display: none;
    margin: 1.125rem 0 0.125rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25rem;
}

.login-content .login-form #alert-message>div:nth-child(1) {
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0.1875rem;
    text-align: center;
}

.login-content .login-form #alert-message>div:nth-child(2) {
    color: rgb(255, 0, 0);
    margin-left: 0.375rem;
    margin-right: 0.625rem;
}

.login-content .login-form>form>.login-btn {
    margin-bottom: 16px;
    width: 100%;
}

.login-content .login-form>.password-link {
    text-align: center;
}

.login-content .login-form>.password-link>a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: rgb(255, 204, 105);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgb(0, 0, 0);
    /***    background-image: linear-gradient(90deg, rgb(255, 255, 255) 2.68%, rgb(0, 0, 0) 61.25%, rgb(255, 255, 255) 104.69%); ***/
}

.box-creat-account {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 10px 1rem;
    align-items: flex-start;
    justify-content: center;
}
.box-creat-account a { color: #0f0f0f; font-weight: bold; font-size: 1rem; text-decoration: none;}

@media screen and (max-width: 768px) {

    .login-container {
        width: 95%;
        height: auto;
        min-height: 400px;
        padding: 1rem;
    }
    .InLogin-form {
        width: 100%;
        height: auto;
    }
}