* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #FFF;
    background-image: url('/src/img/fundo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container a {
    text-decoration: none;
    color: #f2f2f2;
}

.form-group {
    width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    border-radius: 4px;
    padding: 0 40px;
}

.form-group a {
    width: 100%;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 3px;
    background-color: #28a745;
    margin: 10px 0;
    color: #FFF;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.form-group img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .form-group {
        width: 100%;
        height: 60%;
        padding: 0 30px;
    }
}