@font-face {
    font-family: "proxima-nova";
    src: url("../../public/assets/fonts/ProximaNova-Semibold.otf");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "proxima-nova";
    src: url("../../public/assets/fonts/ProximaNova-Regular.otf");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    font-family: "proxima-nova" !important;
}

.page-wrapper {
    background: url("../../public/assets/images/bg.png");
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 180px;
    height: 55px;
    padding: 16px;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    background-color: #7ba9e8;
    color: white;
    border: none;
    border-radius: 0.65rem;
    cursor: pointer;
}

.form-button:last-child {
    margin-bottom: 0;
}

.form-button:hover {
    background-color: #8eb6eb;
}

.form-button span {
    width: 150px;
    font-weight: 500;
}

.form-wrapper {
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
}

.form-body {
    padding: 32px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-body p {
    letter-spacing: 0.5px;
    margin-top: 0;
}

.form-icon {
    width: 130px;
    height: 130px;
    background-color: white;
    border-radius: 130px;
    padding: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-title {
    font-size: 24px;
    color: white;
    font-weight: 500;
}

.form-header {
    background-color: #7ba9e8;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }