* {
    background-color: #F4F6F8;
    color: #222222;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

form {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

p {
    margin: 10px 0 5px 0;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

label {
    display: block;
    margin: 10px 0;
}

button[type="submit"] {
    background-color: #0B2A4A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #0B2A4A;
}

a {
    color: #0B2A4A;
    text-decoration: underline;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

a:hover {
    color: rgb(161, 39, 53);
    text-decoration: underline;
}