body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    margin: 0;
    padding-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    color: red;
    margin-bottom: 20px;
}

label {
    color: black;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

label i {
    margin-right: 10px;
    font-size: 20px;
}

input {
    padding: 12px;
    border: 2px solid red;
    border-radius: 5px;
    text-align: center;
    color: black;
    font-size: 20px;
    color: #333;
}

input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

span {
    margin-top: -15px;
    margin-bottom: 15px;
    font-size: 20px;
    color: black;
}

.error {
    color: red;
}

button {
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    font-size: 20px;
}

button:hover {
    background-color: darkred;
}

i.fas.fa-user {
    margin-right: 8px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: white;
    width: calc(50% - 8px);
}

.btn:hover {
    background-color: darkred;
}

a.btn {
    background-color: red;
    width: calc(50% - 8px);
    margin-right: 5px;
}

a.btn:nth-of-type(2) {
    background-color: green;
}

i.icons {
    margin-right: 8px;
}