﻿:root {
    --default-font-family: "Nunito Sans", sans-serif;
    --deafult-font-size: 16px;
}

html, body {
    font-family: var(--default-font-family);
    font-size: var(--deafult-font-size);
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #DF3F49;
}

label {
    font-size: 16px;
    font-weight: 700;
    color: #707070;
}

.text-danger {
    color: #DF3F49;
}

.intro {

}

form {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.form-field {
    display: grid;
    gap: 8px
}

.feature-bullet-point-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.feature-bullet-point-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 16px;
}

.feature-bullet-point-indicator {
    width: 32px;
    height: 32px;
    background-color: #87c3eb;
    border-radius: 16px;
    background-image: url('/images/check-mark.svg');
    background-size: 100% 100%;
}

.feature-bullet-point-text {
    font-family: "Nunito Sans";
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
    line-height: normal;
}

.website-title-typography {
    font-weight: 600;
    font-size: 32px;
    color: #707070;
}

.website-body-typography {
    font-size: 16px;
    color: #707070;
    font-weight: 400;
}


.intro > a {
    font-weight: 700;
    color: #0060a6;
    text-decoration: underline;
}

.forgot-password {
    font-weight: 700;
    color: #0060a6;
    text-decoration: underline;
}


.tracerco-button {
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 40px;
    border: transparent 0px solid;
    cursor: pointer;
    font-family: var(--default-font-family);
}

.tracerco-primary-button {
    background-color: #0060a6;
    color: #f9f9f9;
}

.tracerco-secondary-button {
    background-color: transparent;
    cursor: pointer;
    color: #0060a6;
}