body {
    background-color: #F9FBFC;
    margin: 0;
    font-family: Inter, sans-serif;
}

input {
    font-family: Inter, sans-serif;
}

body::before {
    width: 80%;
    height: 80vh;
    left: -25%;
    top: -50%;
    background-color: #f4f2e6;
    display: block;
    content: "";
    rotate: -10deg;
    border-radius: 20px;
    z-index: -1;
    position: absolute;
}

h1 {
    text-align: center;
    color: #211E5B;
}

.btn-primary, .btn-secondary {
    border: none;
    border-radius: 32px;
    width: 360px;
    height: 48px;
}

.btn-primary:hover, .btn-secondary:hover {
    cursor: pointer;
    color: inherit;
}

.btn-primary {
    color: #211E5B;
    background-color: #3EF99C;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-primary:hover {
    background-color: #3ced92;
    font-weight: bold;
    font-size: 1.125rem;
}

.btn-secondary {
    color: #000000;
    background-color: #FFFFFF;
    border: 1px solid #D8D8D8;
    font-size: 1.125rem;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #f2f2f2;
    border: 1px solid #D8D8D8;
}

.navbar {
    background-color: #211E5B;
    height: 46px;
}

.navbar-brand {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.navbar-brand::after {
    width: 236px;
    height: 162px;
    left: -40px;
    background-color: #3EF99C;
    display: block;
    content: "";
    top: -35px;
    rotate: -10deg;
    border-radius: 12px;
    z-index: -1;
    position: absolute;
    box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
}

.navbar-brand img {
    margin: 16px 30px;
    width: 134px;
    height: auto;
}

.container {
    display: flex;
    justify-content: center;
    height: calc(100vh - 46px);
}

.v-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

main {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
}

.page-content {
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
}

p {
    max-width: 360px;
    text-align: center;
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-primary {
    width: 320px;
    height: 48px;
    border: 1px solid #d8d8d8;
    border-radius: 32px;
    background-color: #ffffff;
    padding: 0 20px;
}

.small {
    font-size: 16px;
}

a {
    text-decoration: none;
}

.text-danger {
    color: red;
}