*{
    padding: 0;
    margin: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   font-family: 'Jost', sans-serif;
    
}

:root{
    --primary-color: #083E82;
    --secondary-color: #794afa;
    --secondary-darl-color : #453c5c;

    --light-color: #666;
    --light-bg-color :#f2f3f5;
    --light-text-color :#7c899a;
    --light-bg: #eee;
    --white: #fff;
    --black: #2c2c2c;
    --border:1px solid var(--light-color);
    --box-shodow:0 .5rem 1rem rgba(0,0,0,.1);
    --border-color :#e5e8ec;
    --dark-color: #0e021c;

    --font-small: 13px;
    --font-smaller: 11px;

    --percent100:100%;
    --percent50:50%;

    --fw3:300;


    --trans-backgroound-color : background-color .3s color .3s;
    --trans-background: background-color .3s;
    --trans-color: color .3s;
    
}

body {
    position: relative; /* necessário para o ::before */
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    min-height: 100vh;
    margin: 0;

    background-image: url('../img/pc.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Efeito de blur */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    /* Camada azul escura */
    background-color: rgba(0, 0, 50, 0.5); /* ajuste a opacidade conforme quiser */

    z-index: 0;
}

/* Coloque todo o conteúdo acima do ::before */
body > * {
    position: relative;
    z-index: 1;
}




.btn,
.inline-btn{

    padding: 1rem 3rem;
    cursor: pointer;
    font-size: 16px;
    color: var(--white);
    background: var(--primary-color);
    text-align: center;
    text-transform: capitalize;
    border: none;
    margin-top: 1rem;
}



.btn:hover,
.inline-btn:hover{
    background-color: #1c163b;

}

.flex-btn{
    display: flex;
    column-gap: 1rem ;
    justify-content: space-between;
}

.empty{
    background-color: var(--white);
    box-shadow: var(--box-shodow);
    padding: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    
}

.btn{
    width: 100%;
    display: block;

}

.inline-btn{
    display: inline-block;
}



a{
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul{
    list-style: none;
}

img{
    max-width: var(--percent100);
    vertical-align: middle;
}

strong{
    font-weight: 800;
}

table{
    border-collapse: collapse;
    border-spacing: 0 ;
}

input::placeholder{
    font:inherit;
}

.object-cover img{

    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;

}
/* Container geral */
.form-container{
    min-height: calc(100vh - 6rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;

    text-align: center;
   
}

/* Caixa do formulÃ¡rio */
.form-container form{
    width: 100%;
    max-width: 28rem;
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 2.2rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.form-container form {
    margin-top: 4rem;   /* ðŸ”¼ sobe a imagem */
  
}
/* Logo */
.form-container form img{
    margin-top: -1rem;   /* ðŸ”¼ sobe a imagem */
    margin-bottom: 1rem;
}

.form-container form h3 img{
    max-width: 140px; /* mantÃ©m o tamanho */
    height: auto;
}

/* Texto abaixo da logo */
.form-container form span{
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Inputs */
.form-container form .box{
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    color: var(--black);
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #0000001c;
    margin: 0.9rem 0;
    background-color: #f0f0f0;
    transition: all 0.2s ease-in-out;
}

.form-container form .box:hover{
    background-color: #e2e2e2;
}

.form-container form .box:focus-visible{
    outline: 2px solid var(--primary-color);
    background-color: #fff;
}

/* BotÃ£o */
.form-container form .btn{
    width: 100%;
    padding: 0.9rem;
    margin-top: 1.2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.form-container form .btn:hover{
    background-color: var(--primary-color);
}


@media (max-width:850px) {

    
/* Container geral */
.form-container{
    min-height: calc(50vh - 3rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    
}

.form-container form {
    margin-top: 4rem;   /* ðŸ”¼ sobe a imagem */
  
}

/* Caixa do formulário */
.form-container form{
    margin: 3rem;
    width: 95%;
    max-width: 32rem;
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 2.2rem 2rem;
    border-radius: 10px;
    text-align: center;
}

/* Logo */
.form-container form img{
    margin-top: -1rem;   /* 🔼 sobe a imagem */
    margin-bottom: 1rem;
}

.form-container form h3 img{
    max-width: 140px; /* mantém o tamanho */
    height: auto;
}


}
