/**
 * ------------------------------------------------------------------------
 * JA Resort TPL
 * ------------------------------------------------------------------------
 * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
 * @license - Copyrighted Commercial Software
 * Author: J.O.O.M Solutions Co., Ltd
 * Websites:  http://www.joomlart.com -  http://www.joomlancers.com
 * This file may not be redistributed in whole or significant part.
 * ------------------------------------------------------------------------
*/

/*Global Style*/
html {
  font-size: 14px;
}


* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #fbf6f3;
  color: #7b8383;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 30px 0;
  position: relative;
  min-height: 100vh;
}

@media (max-height: 1200px) {
  body {
    justify-content: flex-start;
    margin-top: 3%;
  }
}

img {
  max-width: 100%;
}

/*Box wrap*/
.outline {
  border-radius: 0;
  padding: 30px;
  margin: 30px auto;
  max-width: 100%;
  width: 450px;
}

.outline h1 {
  color: #294138;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
  font-size: 4.5rem;
  font-family: 'Frank Ruhl Libre', serif;
}

.outline p.message {
  text-align: center;
  margin: 0 0 30px 0;
}


/*Form Group*/
.inputbox {
  max-width: 100%;
  font-weight: 400;
}

.input > p {
  margin: 0 0 20px 0;
}

#form-login fieldset {
  border: 0;
  padding: 0;
}


#form-login-remember {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

#form-login-remember input {
  margin-right: 0.5rem;
  height: auto;
}

#form-login .inputbox:focus {
  
}

#form-login-remember label {
  margin: 0;
}

#form-login #submit-buton .btn-primary {
  
}

#form-login #submit-buton .btn-primary:hover {
  
}

/*Mobile view*/
@media (max-width: 767px) {
  body {
    display: block;
  }

  .outline h1 {
    font-size: 45px;
    margin-bottom: 10px;
  }
}