/* public/assets/css/login.css */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

h1 {
    text-align: center;
    color: #333;
    font-weight: 400;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

button {
    padding: 12px 15px;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 20px;
}

button:hover {
    background-color: #303f9f;
}

@media (max-width: 600px) {
    .container {
        padding: 15px 20px;
        margin-top: 20px;
    }

    button {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }
}

ul {
    list-style-type: none; /* Bỏ dấu chấm của danh sách */
    padding: 0;
}