body {
    font-family: sans-serif;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url(image/image.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#box {
    width: 360px;
    height: 380px;
    background-color: #3d3d3d;
    color: antiquewhite;
    position: relative;
    margin-right: 12%;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #333;
}
.icone {
    width: 100px;
    height: 100px;
    background-color: #16a085;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 140px;
    top: -50px;
}
.icone i {
    font-size: 55px;
    color: #2ecc71;
}
h1 {
    text-align: center;
    font-weight: 300;
    color: #2ecc71;
    letter-spacing: 2px;
    font-size: 35px;
}
#box a {
    text-decoration: none;
    font-size: 13px;
    color: #aaa;
    transition: 0.6s;
}
#box a:hover {
    color: #ddd;
    transition: 0.6s;
}

label {
    display: block;
    font-weight: 400;
    font-size: 18px;
}
input {
    width: 100%;
    margin-bottom: 20px;
}

input:not([type="submit"]) {
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid #2ecc71;
    padding: 15px 0;
    color: antiquewhite;
    font-size: 16px;
}
input[type="submit"] {
    border: none;
    outline: none;
    padding: 15px;
    background-color: #16a085;
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.6s;
}
input[type="submit"]:hover {
    background-color: #2ecc71;
    transition: 0.6s;
}