* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,36,121,1) 40%, rgba(8,47,135,1) 50%, rgba(0,138,255,1) 100%);
    display: flex;
    flex-direction: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.box {
    width: 960px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 95px;
    overflow: hidden;
}

.imagem img {
    max-width: 70%;
    margin-top: 50px;
}

img {
    vertical-align: middle;
    border-style: none;
}

form {
    width: 290px;
}

.titulo {
    width: 100%;
    padding-bottom: 54px;
    font-size: 24px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-family: 'Roboto', sans-serif;
}

.user-box {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

.user {
    width: 100%;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: #666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
}

.simbolo-user {
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666;
}

input {
    outline: none;
    border: none;
}

.password-box {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

.password {
    width: 100%;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    color: #666;
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
}

.simbolo-password {
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666;
}

.botao {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
}

button {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    font-family: 'Roboto', sans-serif;
    background: rgb(33, 79, 230);
    color: white;
    font-size: 15px;
    border: none;
    margin-bottom: 10px;
}

button:hover {
    background: rgb(13, 35, 107);
    transition: all 0.4s;
    cursor: pointer;
}

.erro {
    font-family: 'Roboto', sans-serif;
    margin-left: 45px;
    margin-top: 20px;
    position: absolute;
}