body {
    background: linear-gradient(281deg, rgba(0, 34, 82, 0.95) 9.61%, rgba(13, 76, 173, 0.95) 48.27%, rgba(0, 34, 82, 0.95) 86.93%);
    background-size: cover;
    backdrop-filter: blur(18px);
    font-family: "Arial", "Helvetica Neue", sans-serif;
    padding-bottom: 3rem;
    padding-top: 3rem;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
    display: block;
}

#main-content {
    width: 100%;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
}

.page {
    display: flex;
    align-content: center;
    justify-content: center;
}

.page .form {
    display: flex;
    width: 480px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 30px;
    background: linear-gradient(224deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(186, 222, 255, 0.85) 100%);
}

.page .form .title {
    display: flex;
    padding-bottom: 10px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    color: #2C2C2C;

    /* Jtg H3 */
    font-family: Aleo, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.page .form .field {
    display: flex;
    min-height: 52px;
    padding: 10px 15px;
    align-items: center;
    gap: 15px;
    flex: 1 0 0;
    border-radius: 15px;
    background: #FFF;
    width: 100%;
}

.page .form .field-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.page .form .field-wrapper input {
    border-radius: 15px;
    background: #FFF;
    display: flex;
    padding: 10px 15px;
    align-items: center;
    gap: 15px;
    flex: 1 0 0;
    border:none
}

.page .form .field-wrapper label.required::after {
    content: ' *';
}

.button {
    border-radius: 15px;
    background: #02559F;
    display: flex;
    width: 132px;
    max-width: 420px;
    min-height: 44px;
    padding: 6px 20px 6px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: none;
    border: none;
}
