* {
    /* 
    -May want to add "border-box for "box-sizing so padding does not affect width
    -Reset margin and padding 
   */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* 
      -Background color is #344a72
    */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: white;
    color: white;
    line-height: 1.8;
}

a {
    /* 
    Underlined links are ugly :)
   */
    text-decoration: none;
}

#container {
    /* 
    -Remember, margin: auto on left and right will center a block element 
    -I would also set a "max-width" for responsiveness
    -May want to add some padding
    */
    margin: 30px auto;
    max-width: 400px;
    padding: 20px;
}

.form-wrap {
    /* 
      This is the white area around the form and heading, etc
    */
    background-color: white;
    padding: 15px 25px;
    color: #333;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
}

.form-wrap h1,
.form-wrap p {
    /* 
      May want to center these
    */
    text-align: center;
}

.form-wrap .form-group {
    /* 
      Each label, input is wrapped in .form-group
    */
    margin-top: 15px;
}

.form-wrap .form-group label {
    /* 
      Label should be turned into a block element
    */
    display: block;
    /* asta a aliniat first last email pass */
    color: #666;
}

.form-wrap .form-group input {
    /* 
      Inputs should reach accross the .form-wrap 100% and have some padding
    */
    width: 100%;
    padding: 10px;
    border: #ddd 1px solid;
    border-radius: 5px;
}

.form-wrap button {
    /* 
      Button should wrap accross 100% and display as block
      Background color for button is #49c1a2
    */
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #49c1a2;
    color: white;
    cursor: pointer;
}

.form-wrap button:hover {
    /* 
      Hover background color for button is #37a08e
    */
    background-color: #37a08e;
}

.form-wrap .bottom-text {
    /* 
      Bottom text is smaller
    */
    font-size: 13px;
    margin-top: 20px;
}

footer {
    /* 
    Should be centered
   */
    text-align: center;
    margin-top: 10px;
    color: black;
}

footer a {
    /* 
      Footer link color is #49c1a2
    */
    text-align: center;
    margin-top: 10px;
    color: #3e58ad;
}