body {
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #2e21ac, #e54c9c);
    font-family: 'Roboto', 'sans-serif';
    letter-spacing: 1.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    border-radius: 1rem;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.3);
}

.label-input-container {
    margin-bottom: 1.25rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.login-form input {
    border-radius: 0.25rem;
    padding: 0.25rem;
}

.login-form .form-action {
    text-align: center;
}

.login-form .form-submit-btn {
    padding: 0.5rem 1rem;
    background-image: linear-gradient(to bottom right, #2e21ac, #e54c9c);
    letter-spacing: 1.5px;
}