body {
    font-family: Arial, Helvetica, sans-serif;
}

.index-login-card {
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    max-width: 400px;
    width: 90%;
    margin: 10% auto;
    padding: 20px;
    box-sizing: border-box;
}

.index-login-card h1 {
    font-size: 20px;
    margin-top: 0;
}

.index-login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.index-login input[type="submit"] {
    min-width: 80px;
    align-self: center;
    cursor: pointer;
}

.convite {
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 1000px;
    max-width: 1000px;
    width: 100%;
    margin: 10% auto;
    padding: 20px;
    box-sizing: border-box;
}

.convite h1 {
    font-size: 70px;
    margin-top: 0;
}

.convite img {
    width: 500px;
    height: 500px;
}

@media screen and (max-width: 768px) {
    
    .convite {
        height: auto;         
        margin: 5% auto;      
        padding: 15px;
        gap: 10px;
    }

  
    .convite h1 {
        font-size: 32px;      
        text-align: center;
    }

   
    .convite img {
        width: 100%;         
        max-width: 300px;      
        height: auto;          
    }

    .index-login-card {
        margin: 20% auto;      
    }
}