:root {
    --text-1: #75788D;
    --text-2: #1D1E25;
    --text-3: #2F2F2F;
    --primary: #317BFF;
    --primary-hover: #2762CC;
    --success: #279745;
    --success-hover: #228a3e;
    --form-border: #DFDFDFCC;
}
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', 'Roboto', 'Arial', sans-serif;
    height: 100%;
}

main {
    height: 100%;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    height: 100%;
}
.text-1 {
    color: var(--text-1);
    font-weight: 400;
    margin: 0;
}
.text-center {
    text-align: center;
}
.text-m {
    font-size: 1rem;
}
.d-flex {
    display: flex;
}
.flex-grow {
    flex-grow: 1;
}
.m-0 {
    margin: 0;
}
.mt-1 {
    margin-top: 1rem;
}
.mt-1-5 {
    margin-top: 1.5rem;
}
.mt-2 {
    margin-top: 2rem;
}

.myt-form-group {
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', 'Arial', sans-serif;
    margin-bottom: 0.75rem;
}
.myt-form-label {
    color: var(--text-1);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.myt-form-input {
    border: 1px solid var(--form-border);
    border-radius: 8px;
    min-height: 48px;
    font-size: 0.95rem;
    padding: 0rem 1.25rem;
    color: var(--text-2);
}
.myt-form-input:focus {
    outline: none;
    outline: 1.5px solid var(--primary);
}
::placeholder {
    font-family: 'Manrope', 'Arial', sans-serif;
    color: var(--text-1);
}

.label {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.input {
    padding: 0.5rem;
    font-family: 'Urbanist', 'Arial', sans-serif;
    font-size: 1rem;
    border: 1px solid var(--form-border);
    border-radius: 8px;
    background-color: #F9F9F9;
    margin-bottom: 1.25rem;
}
.input:focus {
    outline: none;
    outline: 1.5px solid var(--primary);
}
.btn-form {
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    background-color: var(--primary);
    color: #FFF;
}
.btn-cancel {
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    background-color: #ec2020;
    color: #FFF;
}
.btn-defer2 {
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    background-color: #FFA500 !important;
    color: #FFF;
}
.btn-form:hover {
    background-color: var(--primary-hover);
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}
.header h1 {
    margin: 0;
    margin-bottom: 0.5rem;
}

.btn-back-container {
    width: 100%;
}
.btn-back {
    padding: 0.75rem 0.675rem;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    background-color: transparent;
}
.btn-back:hover {
    cursor: pointer;
}
.btn-back--icon svg {
    display: flex;
    width: 1.5rem;
    margin-right: 0.5rem;
}
.btn-back--text {
    font-size: 0.95rem;
    font-weight: 400;
}
.btn-back:hover {
    background-color: #f1f1f1;
}

dialog button:hover {
    cursor: pointer;
}

.copyright {
    display: flex;
    justify-content: center;
    /* align-self: flex-end; */
}
.copyright a {
    color: var(--text-1);
    font-size: 0.8rem;
    margin-left: 0.25rem;
    text-decoration: none;
    margin: 1rem 0;
}

@media (width >= 1024px) {
    body {
        display: grid;
        place-items: center;
    }
    main {
        width: clamp(560px, 40%, 640px);
    }
}