/*[ RESTYLE TAG ]*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

body {
  --primary-40: #536378;
  --primary-50: #0c2340;
}

a {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  text-decoration: none;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: var(--primary-50);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

input {
  outline: none;
  border: none;
}

select {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

label {
  display: block;
  margin: 0;
}

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*[ Text ]*/
.txt1 {
  font-size: 16px;
  line-height: 1.4;
  color: #555555;
}

/*[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}

.wrap-login100 {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
}

/*[ login more ]*/
.login100-more {
  width: calc(100% - 560px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.login100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

/*[ Form ]*/
.login100-form {
  width: 560px;
  min-height: 100vh;
  display: grid;
  place-content: center stretch;
  background-color: #ffffff;
  padding: 0 55px 80px 55px;
}

.login100-form-title {
  width: 100%;
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 40px;
}

/*[ Input ]*/
.input100 {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  outline: 1px solid #dddddd;
  border-radius: 10px;
  margin-bottom: 10px;
  background: transparent;
  font-size: 18px;
  color: #555555;
  line-height: 1.2;
  padding: 0 26px;
}

.input100.padding {
  padding: 0 26px 0 30px;
}

.input100:focus {
  outline: 1px solid var(--primary-50);
}

/*[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  background: var(--primary-50);
  font-size: 18px;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login100-form-btn:hover {
  background: var(--primary-40);
}