body {
    font-family: 'Arial', sans-serif;
    background-color: #292929;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.login-input {
    margin-bottom: 15px;
}

.btn-back {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    background-color: #d0d0d0;
    text-decoration: none;
}

.btn-back a {
    color: #333;
    text-decoration: none;
}

.btn-back svg {
    width: 20px;
    height: 20px;
}
