/*-----FORM ĐĂNG NHẬP & ĐĂNG KÝ (BEM)-----*/
.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-color: #fff5f7;
}

.auth__container {
    background-color: #fff9f9;
    padding: 60px 50px;
    border-radius: 28px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 1px solid #ffe3e8;
}

.auth__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

.auth__group {
    margin-bottom: 22px;
    text-align: left;
}

.auth__label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.auth__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #f3cfd3;
    border-radius: 40px;
    outline: none;
    background-color: #fff;
    font-size: 1rem;
    transition: 0.25s;
}

.auth__input:focus {
    border-color: #f88ab1;
    box-shadow: 0 0 6px rgba(248, 138, 177, 0.4);
}

.auth__button {
    width: 100%;
    padding: 15px;
    background-color: #f78fb3;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.auth__button:hover {
    background-color: #f368a5;
    transform: scale(1.03);
}


.auth__link {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.auth__link--highlight {
    color: #f368a5;
    font-weight: 600;
    text-decoration: none;
}

.auth__link--highlight:hover {
    text-decoration: underline;
}

.another-login{
    margin: 2rem;
}
.another-login img{
    width: 4rem;
    margin: 1.5rem;
}
.another-login img:hover{
    cursor: pointer;
}