/*#region video */
.video {
    width: 60%;
    max-width: 700px;
    min-height: 420px;
    background: #e87a2b;
    border-radius: 18px;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.10);
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.video.has-message {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
/*#endregion video */

/* #region login */
.login {
    width: 30%;
    min-width: 300px;
    max-width: 700px;
    min-height: 400px;
    background-color: #496899;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.login-items {
    display: flex;
    margin-bottom: 20px;
}
.login-items li{
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}   
.login-items p{
    width: 100%;
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-bottom: 5px;
}
.login-items li:first-child {
    border-right:  1px solid #ccc;
}

/* 修改开始：仅调整这部分 */
.forms-container {
  position: relative;
  min-height: 250px;
  width: 100%;
}
.login-datos {
  transition: opacity 0.3s ease, height 0.3s ease;
}
.login-datos {
  width: 100%;
  padding: 0 15px;
  display: none; /* 默认隐藏 */
  flex-direction: column;
  justify-content: space-around;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.login-datos.active {
  display: flex;
  opacity: 1;
  height: auto;
  overflow: visible;
}
/* 修改结束 */

.login-datos .datos{
    padding: 5px 0px;
}
.login-datos label{
    color: white;
    font-size: 15px;
    margin-bottom: 3px;
}

.login-datos input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.login-datos input:focus {
    outline: none;
    border-color: #E87A2B;
    border-width: 2px;
    padding: 7px;
}
/* #endregion login */

/* #region boton */
.boton{
    border-bottom: 1px solid #ccc;
}
.login-boton {
    width: 70%;
    margin: 20px auto;
}
.login-boton a{
    color: #fff;
}
.boton .egresado{
    margin-top: 0px;
}
.login-boton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 5px;
    background-color: #E87A2B;
    color:white;
}
/* #endregion boton */

/* 响应式调整 */
@media (max-width: 992px) {
    .contenido {
        flex-direction: column;
        padding: 20px;
    }
    .video, .login {
        width: 100%;
        max-width: 600px;
    }
    .video {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .login {
        min-width: unset;
        width: 95%;
    }
    .login-datos {
        width: 95%;
    }
}

/* #region identifica */
.identificar{
    margin-top: 25px;
    text-align: center;
    color: white;
    font-size: 15px;
}
.identificar a{
    color: white;
}
.identificar a:hover{
    color: #E87A2B;
}

.identificacion-form span{
    color: white;
    font-size: 15px;
}

.identificacion-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.identificacion-form input:focus {
    outline: none;
    border-color: #E87A2B;
    border-width: 2px;
    padding: 7px;
}

.datos {
  margin-bottom: 15px;
}

.datos span {
  display: block;
  color: white;
  font-size: 15px;
}

.correo-nota {
  display: block;
  margin-top: 6px;
  color: #d8e4f4;
  font-size: 12px;
  line-height: 1.35;
}

.datos input[type="file"] {
  display: none;
}

.datos .file-hint {
  display: block;
  color: #ccc;
  font-size: 12px;
  margin-top: 5px;
}

.datos .custom-upload-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px dashed #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.datos .custom-upload-label:hover {
  border-color: #E87A2B;
  background-color: rgba(232, 122, 43, 0.1);
}

.datos .custom-upload-text {
  color: #666;
}

.datos .custom-upload-btn {
  padding: 6px 12px;
  background: #E87A2B;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}
.volver-login p{
    margin-top: 3px;
}
.volver-login p a{
    font-size: 15px;
    
    color: white;
}
.volver-login p a:hover{
    color: #E87A2B;
}
/* #endregion identifica */

.alert-box {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-box li {
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.45;
    border: 1px solid transparent;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.12);
}

.alert-box li.error {
    background: #fff5f1;
    border-color: #f2c4b6;
    color: #7a2e1f;
}

.alert-box li.success {
    background: #edf8f1;
    border-color: #b8dcc4;
    color: #1f5d3b;
}

.alert-box li.warning {
    background: #fff7e8;
    border-color: #ecd39a;
    color: #77511a;
}

.alert-box li.info {
    background: #edf6fd;
    border-color: #bfd8ea;
    color: #1f4f70;
}

.user-feedback-panel__icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: #fff1c8;
    color: #8f6500;
    font-size: 42px;
    font-weight: 700;
}

.alert-box--standalone {
    width: 100%;
    max-width: 520px;
    margin: 0;
}

.alert-box--standalone li {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
}

.user-feedback-placeholder {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}
