﻿@import 'root.css';

* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    outline: none !important;
    text-decoration: none;
}

body {
    background: var(--secondary);
    font-size: 16px;
    display: flex;
}

.card-blue {
    display: flex;
    width: 100vw;
    height: 9.5rem;
    background: var(--primary);
}

.title {
    display: flex;
    margin-top: 2.8125rem;
    margin-left: 1.875rem;
}

.image-arrow {
    height: 1rem;
    margin-right: 1.1rem;
}

.span-title {
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 17px;
    color: var(--white);
}

.container {
    display: flex;
    flex-direction: column;
    margin: -4.125rem 0.9375rem 0.9375rem 0.9375rem;
    background: var(--white);
    box-shadow: 0px 2px 4px -1px rgba(74, 85, 104, 0.12);
    border-radius: 3px;
    padding: 1.5625rem 0.9375rem 1.5625rem 0.9375rem;
}

.container-title {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 27px;
    color: var(--black);
}

.span-user, .span-senha {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 17px;
    color: var(--white-gray);
}

.text-box {
    height: 2.625rem;
    border: 0.6px solid var(--gray);
    box-sizing: border-box;
    border-radius: 4px;
    width: 100%;
    padding: 0.9375rem;
    font-size: 1rem;
}

.btn-primary {
    height: 2.8125rem;
    background: #3A5595;
    border-radius: 4px;
    color: var(--white);
    border: none;
    font-size: 1rem;
}

.card-image {
    display: none;
}

.field-icon {
    float: right;
    margin-left: -1.875rem;
    margin-top: 1.875rem;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1546px) {
    .card-blue {
        display: none;
    }

    .content {
        display: flex;
    }

    .card-image {
        display: flex;
        height: 100vh;
    }

    .container {
        margin: 14.0625rem 0 0 -3.75rem;
        height: 32.9375rem;
        width: 44.1875rem;
        padding: 2.1875rem;
        border-radius: 12px;
    }

    .container-title {
        font-size: 2rem;
        margin-top: 2.5rem;
    }

    .title {
        position: absolute;
        left: 18.125rem;
    }

    .span-title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1199px) {
    .field-icon {
        margin-top: 1.5625rem;
    }

    .text-box {
        height: 3.4rem;
    }
}
