/* static/css/tests/style.css */

:root {
    --primary: #4653cf !important;
    --primary-light: #606de2;
    --primary-dark: #4f46e5;
    --highlight-color: #FFDE7C;
    --text-color: #3f3e3e;
    --yellow: #FFAA14;
    --light-grey: #ECEFF3;
    --secondary: #e5e7eb;
    --text-muted: #86889d !important;
    --text-white: #ffffff;
    --bg: #ffffff;
    --bg-secondary: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --font-family: 'Inter', sans-serif;
}

/* Body styles */
body,
html {
    margin: 0;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: normal;
    color: var(--text-color) !important;
    background-color: #FAFBFF !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 32px !important;
    font-weight: bold !important;
}

h2,
h3 {
    color: var(--text-color);
    text-align: left;
    margin-bottom: 60px;
    font-weight: 600 !important;
}

h3 {
    text-align: left;
    margin-bottom: 20px;
}

.description {
    font-size: 14px;
    color: #5a5a5a;
    text-wrap: pretty;
}

input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-appearance: none;
    appearance: none;
}

.purple {
    color: var(--primary);
}

/* Navbar */

.navbar-container{
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    background: white;
    position: relative;
}

.navbar-brand{
    margin: auto;
}

.navbar-brand img {
    width: auto;
    height: 40px;
    margin-left: 1rem;
    margin-right: 1rem;
}

/* Button Primary */

.btn-primary {
    appearance: button;
    backface-visibility: hidden;
    background-color: var(--primary) !important;
    border-radius: 8px;
    border-width: 0;
    border: transparent;
    box-sizing: border-box;
    color: var(--text-white);
    cursor: pointer;
    font-weight: 500;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 14px 24px !important;
    position: relative;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    transform: translateZ(0);
    transition: all .2s, box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled {
    cursor: default;
}

.btn-primary:hover,
.btn-primary:focus {
    outline: transparent;
    border: transparent;
    background-color: var(--primary-light) !important;
    color: var(--text-white) !important;
    text-decoration: none;
}

.btn-primary:focus {
    box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

/* Yellow btn */

.btn-primary.yellow {
    color: var(--text-color) !important;
    background-color: #FFDE7C !important;
}


.btn-primary.yellow:hover,
.btn-primary.yellow:focus {
    background-color: #fee394 !important;
}

/* button transparent */

.btn-transparent {
    appearance: button;
    backface-visibility: hidden;
    display: block;
    background: rgba(188, 194, 251, 0.40);
    border-radius: 5px;
    border-width: 0;
    box-sizing: border-box;
    color: var(--primary);
    cursor: pointer;
    font-size: 100%;
    font-weight: 600;
    line-height: 1.15;
    margin: 12px 0 0;
    outline: none;
    overflow: hidden;
    padding: 14px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transform: translateZ(0);
    transition: all .2s, box-shadow .08s ease-in;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.btn-transparent:disabled {
    cursor: default;
}

.btn-transparent:hover,
.btn-transparent:focus {
    outline: transparent;
    border: transparent;
    background: rgba(167, 175, 241, 0.5);
    color: var(--primary) !important;
}

.btn-transparent.btn-white {
    background-color: var(--text-white);
}

.btn-transparent.btn-white:hover {
    background-color: #ebedff;
}

a.btn-transparent,
a.btn-transparent:hover {
    text-decoration: none;
}

/* Btn link */

.btn-text {
    display: flex;
    width: 100%;
    margin: auto;
    color: var(--primary);
    justify-content: center;
    cursor: pointer;
}

.btn-text:hover,
.btn-text:focus {
    color: var(--primary);
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 24px !important;
    }

    .navbar{
        padding: 0.25rem 0;
    }

    .navbar-container{
        max-width: unset;
        margin: unset;
    }

    .navbar-brand img {
        height: 30px;
        margin-left: 0;
    }

}

