* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #0c2858;
    background-image: linear-gradient(to bottom right, #0c2858, #b0c4de);
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #0c2858;
    background-image: linear-gradient(to bottom right, #0c2858, #b0c4de);
}

.registerCard {
    position: relative;
    width: 400px;
    height: 450px;
    padding-left: 10px;
    padding-right: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    background-position: center;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    justify-content: center;
    align-items: center;
    outline: 1px;
}

h2 {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

button {
    width: 100%;
    height: 40px;
    margin-bottom: 2em;
    border-radius: 10px;
    background: #8b1f03;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

button:hover {
    background-color: #96351c;
}

a {
    color: #0c2858;
    text-decoration: none;
}

a:visited {
    color: #0c2858;
}