.model-image{
    width: 600;
    height: 800;
    object-view-box: 0 0 600 800;
}

*{
    margin: 0; /*cho ảnh sát vào khung máy cho đẹp*/
    padding: 0; /*Phần nhập sát vào vs nhau*/
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

.container{
    display: flex; /*Cho dòng dữ liệu sang trái FLEX*/
    height: 100vh;
}

/*Trái*/
.left-section{
    flex: 1; /*trái chiếm 1 flex*/
    background: #f0f9f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-image-su{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Phải*/
.right-section{
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column; /*trục dọc các phần tử*/
    justify-content: center; /*đc chỉnh ở giữa theo trục chính flex-diẻction*/
    padding: 40px;
}

.return-link{
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.Logo{
    position: absolute;
    font-size: 24x;
    color: #2c3e50;
    top: 20px;
    font-weight: bold;
}

/*Phần form*/
.login-form{
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /*căn phần tử con giữa chiều ngang*/
}

.form-login {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
}

.form-group,
.password{
    margin-bottom: 20px;
}

.form-input{
    width: 430px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #333;
}

.login-button{
    width: 200px;
    padding: 15px;
    background: black;
    color: aliceblue;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-button:hover {
    background: #2c3e50;
}

.signup-link a{
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-section {
        height: 30%;
    }
    
    .right-section {
        height: 70%;
        padding: 20px;
    }
}