/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*:focus {
  outline: none;
}

a, .btn-default {
  color: rgb(92, 116, 130);
}

.btn-default {
  font-size: 110%;
  font-weight: 600;
}

a:hover, a:active, a:focus {
  text-decoration: none;
  color: rgb(252, 168, 41);
}

.btn-default:hover, .btn-default:active, .btn-default:focus {
  color: rgb(252, 168, 41);
  background: white;
}

body {
  font-family: 'Pavanam', sans-serif;
  background: url("assets/pravin-narsing/bg.png") no-repeat fixed center;
  background-size: cover;
  color: rgb(34, 30, 17);
}

.main {
  margin: 0 20%;
  background: rgba(255, 255, 255, 0.4);
}

.title {
  padding: 40px;
  text-align: center;
}

h1 {
  padding: 20px 0;
  font-size: 300%;
  font-weight: bold;
}

h2 {
  padding: 20px 0;
  font-size: 150%;
  font-weight: bold;
}

.sign-up {
  background: rgba(227, 224, 227, 0.8);
  box-sizing: border-box;
  padding: 40px;
}

.step {
  padding: 20px 0;
  border-bottom: 2px solid rgb(92, 116, 130);
}

.description {
  display: block;
  width: 100%;
  margin: 20px 0;
  font-weight: bold;
  font-size: 120%;
}

.sub-description {
  display: block;
  margin: 10px 0;
}

.multiple-input {
  margin: 2px 0;
  margin-right: 10px;
  display: block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  margin-bottom: 15px;
}

.group {
  display: inline-block;
}

.minus-btn {
  display: inline-block;
}

.add-day-btn,
.remove-day-btn {
  padding: 8px 16px;
  font-size: 110%;
  font-weight: bold;
}

.add-day-btn {
  background-color: rgb(92, 116, 130);
  border-color: rgb(82, 106, 120);
  color: white;
}

.add-day-btn:hover,
.add-day-btn:active,
.add-day-btn:focus {
  background-color: rgb(72, 96, 110);
  border-color: rgb(62, 86, 100);
  color: white;
}

.remove-day-btn {
  background-color: rgb(180, 80, 70);
  border-color: rgb(160, 70, 60);
  color: white;
}

.remove-day-btn:hover,
.remove-day-btn:active,
.remove-day-btn:focus {
  background-color: rgb(160, 60, 50);
  border-color: rgb(140, 50, 40);
  color: white;
}

.inline-label {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  vertical-align: middle;
  font-size: 120%;
}

.button-container {
  margin-top: 15px;
  text-align: center;
}

.terms input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  vertical-align: top;
  display: inline-block;
}

.terms label {
  cursor: pointer;
  vertical-align: top;
  display: inline-block;
  max-width: calc(100% - 40px);
}

.phone-input {
  width: 50%;
}

.input-group-btn .btn-default {
  font-size: 14px !important;
  line-height: 1.42857143 !important;
  padding: 6px 12px !important;
  font-weight: normal !important;
}

.valid-check {
  padding: 10px 0;
}

.feedback-message {
  display: block;
  margin: 20px 0;
  font-size: 120%;
  text-align: center;
}

.donate-message {
  display: block;
  margin: 10px 0;
  font-size: 110%;
}

.paypal-form {
  border-bottom: 2px solid rgb(92, 116, 130);
  padding: 40px 0;
  text-align: center;
  font-weight: bold;
}

.email {
  display: block;
  text-align: center;
  padding: 20px 0;
}

.error-message {
  color: #d9534f !important;
  background-color: #f2dede !important;
  border: 2px solid #d9534f !important;
  padding: 12px 15px !important;
  margin: 10px 0 !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  display: block !important;
}

.error-message:before {
  content: "⚠️ ";
  margin-right: 5px;
}

.has-error .btn {
  border-color: #d9534f !important;
  border-width: 2px !important;
}

.has-error .form-control {
  border-color: #d9534f !important;
  border-width: 2px !important;
}

@media only screen and (max-width: 768px) {
  .main {
    margin: 0 10%;
  }
  .phone-input {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  body {
    background: url("assets/pravin-narsing/bg-small.png") no-repeat fixed center;
  }
  .main {
    margin: 0;
  }
}