* {
    box-sizing: border-box;
}

body {
    background-color: #E9EDFE;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;

    width: 100vw;
    height: 100vh;
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inter-500 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.inter-600 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.inter-700 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
}

nav {
    width: 100%;

    padding: 24px 32px;
    position: absolute;
}

nav img#logo {
    height: 40px;
}

main {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    gap: 24px;

    width: 410px;

    display: flex;
    flex-direction: column;
}
.login-header {
    display: flex;
    flex-direction: column;

    gap: 8px;
}
.login-header h1 {
    font-size: 24px;
    color: #343242;
}
.login-header span {
    font-size: 16px;
    color: #6B6B6B;
}

.login-fields {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

fieldset {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;

    border: none;
    padding: 0;
}
fieldset label {
    font-size: 14px;
    color: #343741;
}
fieldset input {
    border: 1px solid #93A3B7;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 16px;
}
.cta-button {
    background-color: #2246E0;
    color: #FFFFFF;

    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
}

.cta-button[disabled] {
    background-color: #AEAEAE;
}

span.error {
    color: #FF4D4D;
    font-size: 14px;
}
span.info {
    color: #343242;
    font-size: 14px;
}