/*------------------------------------------------------------------

Project:	Garena Mobile Web Authentication
Version:	0.1
Last change:	06/02/014 [newly created]

-------------------------------------------------------------------

[Table of contents]

1. General Reset
2. Global Class
3. Header / #header
4. Footer / #footer
6. Content / .content
6. Login Page
   6.1 Login Form
   6.2 Login Button
   6.3 Error Panel
   6.4 Info Panel
7. Link Page
   7.1 Icons
   7.2 Buttons

-------------------------------------------------------------------*/

/******* fontface ******/
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Bold.ttf);
  font-weight: bold;
}

/******* General *******/
html {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  margin: 0;
}
body {
  color: #767676;
  background: #f2f0eb;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 0px !important;
  margin: 0px !important;
}
ul li {
  list-style: none;
}
a {
  color: #34aadc;
}
a:hover,
a:focus {
  color: #1f92c3;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
html,
body,
div {
  margin: 0;
  padding: 0;
}

/******* Gobal Class *******/
.hidden {
  display: none;
}
.fixed-top {
  position: fixed;
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.15);
}
.strong {
  font-weight: bold;
}

/******* Header *******/
#header {
  height: 48px;
  width: 100%;
  min-width: 160px;
  top: 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 12;
  text-align: center;
}
#logo {
  height: 40px;
  margin-top: 4px;
}

/******* Footer *******/
#footer {
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  border-top: 1px solid #ddd;
}

/******* Content *******/
.content {
  margin: 20px auto 0;
  padding: 0 16px;
  max-width: 416px;
  background-color: #f2f0eb;
}
.title h2 {
  margin-bottom: 60px;
  font-size: 16px;
}

p.strong {
  margin-top: 32px;
}
