/* Importando uma fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: url('../img/backgroud.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#div-form {
    background: rgba(255, 255, 255, 0.9); /* Branco com leve transparência */
    backdrop-filter: blur(10px); /* Efeito de vidro fosco */
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 20px;
    transition: transform 0.3s ease;
}

/* Efeito sutil ao passar o mouse na caixa */
#div-form:hover {
    transform: translateY(-5px);
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f3d7b0;
    margin: 0 auto 20px auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo #logo {
    width: 60%;
    height: auto;
    object-fit: cover;
}

.titulo {
    margin-bottom: 30px;
    text-align: center;
}

.titulo h1 {
    font-weight: 700;
    font-size: 28px;
    color: #F97415;
    margin-bottom: 5px;
}

.titulo h3 {
    font-weight: 400;
    font-size: 14px;
    color: #64748B;
}

#div-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#div-form label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-left: 5px;
}

#div-form input, 
#div-form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    background-color: #F8FAFC;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

/* Destaque ao clicar no campo */
#div-form input:focus, 
#div-form select:focus {
    border-color: #F97415;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(249, 116, 21, 0.1);
}

#div-form button {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #F97415 0%, #EA580C 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 116, 21, 0.3);
}

#div-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(249, 116, 21, 0.4);
    filter: brightness(1.1);
}

#div-form button:active {
    transform: scale(0.98);
}