/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    font-family: Manrope;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}

@media (min-width: 640px) {
    .card {
        top: 50%;
        right: 80px;
        transform: translate(0, -50%);
    }
}

@media (max-width: 640px) {
    .card {
        inset: 5%;
    }
}

.card {
    border-radius: 6px;
    padding-top: 48px;
    padding-right: 28px;
    padding-bottom: 36px;
    padding-left: 28px;
    box-shadow: 0px 2px 10px 0px #3A35411A;
    background: #FFFFFF;
    max-width: 446px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.title {
    font-weight: 800;
    font-size: 24px;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: #010918DE;
}

.input {
    border-radius: 6px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 5px;
    border-width: 1px;
    border: 1px solid #2121213B;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #010918AD;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.submit {
    background: #11223B;
    box-shadow: 0px 4px 8px -4px #3A35416B;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #FFFFFF;
    cursor: pointer;
}

.support {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #010918AD;
}

.description {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #010918AD;
}

.link {
    color: #3D93AE;
    text-decoration: none;
    white-space: nowrap;
}

.logo {
    margin: 0 auto;
}

.password-icon {
    transform: rotate(180deg);
    padding: 0px;
    transition: 0.3s;
}

.navbar-primary.collapsed .btn-expand-collapse .material-icons {
    transform: rotate(180deg);
    padding: 0px;
    transition: 0.3s;
}

span.show i {
    color: #D1D1D1;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.alert-container {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #FF4C51;
    border-radius: 5px;
    padding-top: 6px;
    padding-right: 16px;
    padding-bottom: 6px;
    padding-left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-container>.alert-content {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.alert-container>.alert-content>ul {
    padding: 0;
}

.alert-container>.alert-content>ul>li {
    list-style-type: none;
}

.alert-container>.alert-close-container>.alert-close>i {
    color: #010918DE;
}