:root {
    --color-primary: #025653;
    --color-primary-dark: #012E2F;

    /*#073735;*/
    --color-secondary: #96CEAB;
    --color-secondary-light: #96CEAB;
    --danger: red;
    --gray-light-2x: #f2f2f2;
    --gray-light: #dddddd;
    --gray: #999;
    --box-shadow: 0 1px 3px rgba(216, 216, 216, 0.37), 0 1px 2px rgba(230, 230, 230, 0.486);
    --white: #FFFFFF;
    --color-text: #073735;
}


body {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 1rem;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    font-size: 0.875rem;
    background-color: rgb(240, 244, 249);
    color: var(--color-primary-dark);
}

main {
    background-color: #ffffff;
    border-radius: 0.5rem;
    max-width: 25rem;
    width: auto;
    padding: 1.7rem;
    gap: 2rem;
    box-shadow: var(--box-shadow);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: transparent;
}

h1 {
    font-size: 2.25rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.app-name {
    font-weight: 400;
    font-size: 1rem;
}

form {
    margin-top: 1rem;
    gap: 1.5rem;
}

form > p {
    font-size: 0.875rem !important;
}

.btn-primary {
    border: none !important;
    box-shadow: none !important;
    border-color: var(--color-primary) !important;
    background-color: var(--color-primary) !important;
}

a {
    color: #000 !important;
    text-decoration: none;
    font-size: 0.8125rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

a:hover {
    opacity: 1;
}

input {
    height: 2.875rem;
    font-size: 0.875rem;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--color-primary) !important;
}

input .is-invalid {
    border-color: #e91e63 !important;
}

.error-msg {
    font-size: 0.75rem;
}

.otp-input {
    width: 3rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
    transform: scale(1.05);
}

.login-link {
    opacity: 1;
}

.hover-card {
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
}

.hover-card:hover {
    border-color: var(--color-primary);
}

.text-primary {
    color: var(--color-secondary) !important;
}

.select-card {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light) !important;
    border-radius: .75rem;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.select-card .icon {
    font-size: 1.5rem;
    height: 2rem;
    width: 2rem;
    color: var(--color-primary-dark);
}

.org-description {
    opacity: 0.7;
}

.select-card:hover,
.select-card:focus {
    background-color: rgb(240, 244, 249);
    /*border-color: var(--color-secondary);*/
    outline: none;

    .org-description {
        opacity: 1;
    }
}

@media (min-width: 576px) {
    main {
        width: 25rem;
    }
}