:root{
    --cor1:#0c6938;
    --cor2:#30ad2a;
    --cor3:#FFD700;
    --cor4:#000000;
    --cor5:#ffffff;
    --cor6:#f5f5f5;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

}

body{
    margin: 0;
    font-family: var(--font);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  
}
.fundo-desfocado{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-image: url(imagens/download.png);
    background-repeat: repeat-x;
    background-position: center;
    filter: blur(3px);
    z-index: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.card{
    background-color: #f8f8f8; 
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

h1{
    font-size: 2.5em;
    margin-bottom: 5px;
    color: #2c3e50;
    letter-spacing: 1px;
}

h2{
    font-size: 1.1em;
    color: #7f8c8d;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-group{
    margin-bottom: 30px;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.client-btn{
    background-color: var(--cor1); 
}

.employee-btn{
    background: linear-gradient(135deg, #FFC107, #FFD54F);
}

.btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn .icon{
    margin-right: 10px;
    font-size: 1.2em;
}

.instructions{
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.instruction-item{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #555;
}

.instruction-item .icon{
    margin-right: 10px;
    font-size: 1.1em;
    color: #7f8c8d; 
}


@media(max-width: 600px){
    .card{
        padding: 30px;
    }

    h1{
        font-size: 2em;
    }

    h2{
        font-size: 1em;
    }

    .btn{
        font-size: 1em;
        padding: 12px 20px;
    }

    .instruction-item{
        font-size: 0.9em;
    }
}
