* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Noto Sans", sans-serif;
}

.logo{
    height:40px;
    padding:30px;
    display:block;
    margin:0 auto;
}

.title-error{
    color:crimson;
}
.title-success{
    color:#59a909;
}

.images {
    width: 100%
}

.images img {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}

.images-error img,
.images-sucesso img{
    width: 60px;
    height:60px;
    display:block;
    margin:20px auto;
}

.container {
    display: flex;
    align-items: center;
    height: 75vh;
}

.container .inside {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 400px;
    box-sizing: border-box;
    box-shadow: rgba(54, 61, 77, 0.15) 0px 10px 24px 0px;
     border-radius: 20px;
}

.inside-feedback{
    padding:30px;
}

.content {
    margin: 45px;
}

.content-feedback{
    text-align:center;
}

.button {
    display: block;
    margin: 0 auto;
    padding: 15px 50px;
    background: #6E007D;
    border: 2px solid #6E007D;
    color: white;
    font-size: 16px;
    font-weight: bolder;
    border-radius: 30px;
    transition: background-color 0.2s ease;

}

.button:hover {
    border: 2px solid #6E007D;
    background-color: white;
    color: #6E007D;

}

.input-text {
    border: none;
    border-bottom: 1px solid slategrey;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
}

.bottom-link{
    display:block;
    margin-bottom:10px;
    text-decoration: none;
    text-align:center;
}

label {
    visibility: hidden;
}

h1 {
    color: #480070;
}

p {
    margin: 20px 0;
    line-height:1.5;
}

@media (max-width:600px) {
    .container .inside {
        border: none;
        box-shadow: none;
        width: 100%;
    }

    .container {
        height: 100%;
    }
}