* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

html {
    height: 100%;
}

:root {
    --royal-blue: #24468E;
    --baby-blue: #9BADFF;
    --light-blue: #DAE4FF;
    --background-blue: #F5F8FF;;
    --orange: #FF921D;
    --red: #F04438;
    --purple: #7839EE;
    --grey: #D5DBE2;
    --black: #22272F;
    --white: #ffffff;
}

.success {
    font-weight: 500;
}
.error {
    border: 1px solid var(--red);
    padding: 8px;
}
.message {
    font-weight: 600;
    margin: 16px 0;
    text-transform: uppercase;
}
.descriptive_text {
    color: #8696AA;
    font-weight: 500;
}
.supporting_text {
    color: #8696AA;
    font-size: 12px;
    font-weight: 500;
}

.instructions p {
    display: flex;
    align-items: center;
}
.instructions img {
    margin-left: 8px;
    margin-right: 8px;
}

body {
    background-color: var(--background-blue);
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
header {
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 132px;
    height: 48px;
    margin: 20px 48px;
}
nav {
    margin-right: 48px;
    display: flex;
    gap: 50px;
}
nav a {
    color: var(--black);
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}

main {
    margin: 60px 230px;
    padding: 16px 36px 27px 36px;
    background-color: var(--white);
    flex: 1;
}
@media (max-width: 1600px) {
    main {
        margin: 30px;
    }
}
h1, h2, h3 {
    font-weight: 500;
}
.header_action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

form {
    display: flex;
    flex-direction: column;
}
.form_input {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}
input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
option,
textarea {
    padding: 10px 14px;
    width: 260px;
    border-radius: 8px;
    border: 1px solid var(--grey);
    box-shadow: 0px 1px 2px 0px #10272F0D;
}
select,
option {
    width: 288px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
option:focus {
    outline: none;
    border-color: var(--purple);
}
.button {
    background-color: var(--royal-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    width: 167px;
    height: 47px;
    border: 0px;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    cursor: pointer;
}
a[action] {
    cursor: pointer;
}

.mt_8 {
    margin-top: 8px;
}
.mt_16 {
    margin-top: 16px;
}
.mt_32 {
    margin-top: 32px;
}
.mb_8 {
    margin-bottom: 8px;
}
.mb_16 {
    margin-bottom: 16px;
}
.mb_32 {
    margin-bottom: 32px;
}

/* Sticky Footer Styles */
footer {
    background-color: var(--white);
    padding: 10px 0;
    margin-top: 20px;
}

footer hr {
    border: 0;
    border-top: 1px solid var(--grey);
    margin-bottom: 10px;
}

footer p {
    text-align: center;
    margin: 0;
    color: var(--black);
    font-size: 12px;
}

footer a {
    color: var(--royal-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}