.container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10rem;
    flex-flow: column;
}

.container .wrapper {
    margin-bottom: 3rem !important;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    width: 350px;
    z-index: 1
}

.container .wrapper header {
    margin-bottom: 40px
}

.container .wrapper header .logo {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #6065d9;
    display: flex;
    justify-content: center;
    align-items: center
}

.container .wrapper header .logo span {
    font-size: 18px;
    color: #fff
}

.container .wrapper header h1 {
    color: #6065d9;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 40px
}

.container .wrapper header p {
    color: #6065d9;
    font-size: 18px;
    font-weight: 300;
    margin: 5px 0 0 0
}

.container .wrapper .main-content input {
    border: none;
    display: block;
    width: 100%;
    height: 50px;
    margin: 15px 0;
    font-size: 18px;
    color: #999
}

.container .wrapper .main-content input::placeholder {
    color: #999;
    font-size: 18px;
    font-weight: 300
}

.container .wrapper .main-content input:focus {
    outline: none
}

.container .wrapper .main-content .line {
    width: 100%;
    height: 2px;
    background-color: #999 55
}

.container .wrapper .main-content button {
    background: linear-gradient(to right, #6065d9, #17d7fa);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    display: block;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    margin-top: 1rem;
    outline: none;
    cursor: pointer
}

.container .wrapper footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 60px
}

.container .wrapper footer p {
    margin: 0;
    font-weight: 100
}

.container .wrapper footer p a {
    color: #6065d9;
    text-decoration: none
}

@media (min-width:320px) and (max-width:768px) {
    .wrapper {
        margin: 0 10px !important;
        padding: 30px
    }

    .wrapper header h1 {
        font-size: 30px
    }
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
  }