/*
E-shop systém na míru 
Vyrobil: Vahan Hambardzumjan
*/

@charset "utf-8";

/*--------- Reset ---------*/

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, 
font, ins, kbd, q, s, samp, small, strike, strong, 
sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, 
form, label, legend, table, caption, tbody, tfoot, 
thead, tr, th, td {
	border: 0;
    font-family: 'Arial', serif;
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

body, html {
background:  #634336; 
font-size: 100%;
  line-height: 1.875;
  font-family: "Arial", sans-serif;
  font-weight: 400;
color: #000;
height: 100%;
width:100%;
}


h1 {
  font-size: 18px;
}

h2 {
  font-size: 20px;
  font-weight:bold;
}

img {
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */  
}

a {
 color: #c48f56;
 text-decoration: none;
 transition: 0.2s;
}

a:hover {
  color: #fff;
}

small {
font-size: 14px;
color: #cecece;
}

input[type='checkbox'],
input[type='radio']{ 
height: 20px; 
width: 20px; 
cursor:pointer;
border: 1px solid #c48f56;
background:#121212;
color: #fff;
vertical-align:top;
}



/*--------- Content ---------*/ 

#content {
margin: 0 auto;
max-width: 1000px;
height: 100%;
text-align:center;
}

#content .logo { 
margin-top: 20px;
}

#content .formular {
    position: absolute; /* nebo relative pokud stačí */
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* aby se přizpůsobilo */
    max-width: 30em; /* aby na větších monitorech nebylo moc široké */
    border: 1px solid #414141;
    background-color: #f0e5db;
    margin-bottom: 20px;
}

#content .formular span {
display:table;
margin: 0 auto;
}


#content .formular input[type="number"]{
padding: 10px;
width: 50px;
font-weight: bold;
font-size: 15px;
border: 1px solid  #7e5014; 
background:#f0e5db;
color: #000;
}

#content .formular select{
padding: 10px;
font-size: 15px;
border: 1px solid  #7e5014; 
outline:none;
cursor:pointer;
background:#f0e5db;
color: #000;
}
 
 
 

/* Material Design Formulaře */


.form__wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1.6rem;
  width: 70%;
  vertical-align: middle;
}

.form__wrapper--submit {
  padding: 1.6rem 0;
}

.form__input {
  display: block;
  position: relative;
  margin-top: 1em;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  box-sizing: border-box;
  color: #000;
  font-size: 1.2rem;
  outline: 0;
  border: none;
  border-bottom: solid 1px #7e5014; 
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -moz-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -o-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #c48f56 4%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #c48f56 4%);
  background-position: -400px 0;
  background-size: 400px 100%;
  background-repeat: no-repeat;
}
 
.form__input:focus {
  background-position: 0 0;
  -webkit-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -o-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

/* Formulař Label */
.form__label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
  color: #000;
}

/* Formulař  Label Content */
.form__label-content {
  position: absolute;
  -webkit-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -o-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  
}


.form__input:focus ~ .form__label .form__label-content,
.form--filled .form__label-content {
  -webkit-transform: translate3d(0, -65%, 0);
  -moz-transform: translate3d(0, -65%, 0);
  transform: translate3d(0, -65%, 0);
  font-size: 14px;
}

 #hlaska span.wrong,
 .info-lista-chyba{
border:  1px solid red;  
background-color: #ffcdcd;
padding: 10px 15px;
overflow: hidden;
display:inline-block;
text-align:left;
color: #000;
font-size: 13px;
}

#hlaska span.good,
.info-lista-provedeno{
border:  1px solid green;  
background-color: #d8fcd5;
padding: 10px 15px;
overflow: hidden;
display:inline-block;
text-align:left;
color: #000;
font-size: 13px;
}

.password-strength {
    margin-top: 10px;
    text-align: center;
}

.weak {
    background-color: rgba(255, 0, 0, 0.3); /* Červený pozadí pro slabé heslo */
    transition: background-color 0.5s ease; /* Přidání animace */
}

.good {
    background-color: rgba(255, 165, 0, 0.3); /* Oranžové pozadí pro středně silné heslo */
    transition: background-color 0.5s ease; /* Přidání animace */
}

.strong {
    background-color: rgba(0, 128, 0, 0.3); /* Zelené pozadí pro silné heslo */
    transition: background-color 0.5s ease; /* Přidání animace */
}



/* Tlačítko */
.btn {
  margin: 0 auto;
  width: auto!important;
  display: inline-block;
  padding: 0.6em 1.5em;
  border-radius: 25px;
  background:#7e5014; 
  color: #fff;
  border: 0;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.0rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.24), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}
.btn:focus, .btn:hover {
background: #e8ba88; 
}
.btn.btn-block {
  width: 100%;
  display: block;
}

 
