.tuyensinh-section {
    /* min-height:100vh; */
    display: flex;
    align-items: center;
    /* background:linear-gradient(135deg,#0f172a,#1e293b); */
    padding: 10px 10px;
}

.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.row-custom {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.col-left {
    flex: 1;
    min-width: 350px;
}

.col-right {
    flex: 1;
    min-width: 350px;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.title-main {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #ed1c24;
    margin: 15px 0 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: black;
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
    font-size: 12pt;
    font-family: "Momo Trust Display", sans-serif;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 20px;
}

.input-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #333;
    transition: 0.3s;
    font-family: "Momo Trust Sans", sans-serif;
    font-size: 11pt;
}

.input-icon input:focus {
    border: 1.5px solid #007e6e;
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.15);
}

.toggle-password {
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #ed1c24, #ff4d4d);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 11pt;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.5);
}

.guide-link {
    display: block;
    margin-top: 15px;
    color: #38bdf8;
    text-decoration: none;
    font-size: 14px;
}

.login-divider {
    font-size: 11pt;
    text-align: center;
    margin: 25px 0;
    /* opacity:0.6; */
    color: gray;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 11pt;
}

.btn-google:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-google img {
    width: 22px;
}

.login-desc {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    /* opacity:0.7; */
    color: #333;
}

/* NOTICE CARD */
.notice-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.notice-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ed1c24;
}

.notice-card ul {
    list-style: none;
    padding: 0;
}

.notice-card li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.notice-card li:hover {
    background: #f9f9f9;
}
