@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; 
  list-style: none;
}

.eclipsOne,
.eclipsTwo {
    z-index: 0;
    pointer-events: none;
}

.navigation {
    position: relative;
    z-index: 10;
}

html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text-left {
  text-align: left;
}
img{
	max-width: 100%;
	height: auto;
}
body {
  background-color: #fff;
  font-family: "Roboto", sans-serif !important;
}
.login-container{
	width: 100%;
    display: flex;
/*    flex-wrap: wrap;*/
    box-sizing: border-box;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 152, 0, 0.14902), #fff, rgba(76, 175, 80, 0.168627));
}

.slider-box{
	width: 60%;
	padding: 14px;
	margin:  auto;
	@media all and (max-width: 768px) {
		display: none;
	}
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.slide-container .slide {
  display: none;
  width: 100%;
  text-align: center;
}

.slide-container .slide.fade {
  animation: fade 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.slide-container .slide img {
 height:100%; 
 width:800px;
}

.slide-container .prev,
.slide-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.slide-container .prev:hover,
.slide-container .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.slide-container .prev {
  left: 2px;
}

.slide-container .next {
  right: 2px;
}

.dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.dots-container .dot {
  cursor: pointer;
  margin: 5px;
  width: 20px;
  height: 20px;
  color: #333;
  border-radius: 50%;
  background-color: #dfd6ce;
}

.dots-container .dot.active {
  border: 2px solid green;
}

.log-form-container{
	width: 40%;
	padding: 14px;
	height: 100vh;
	background-color: #fff;
	box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
	@media all and (max-width: 768px) {
		width:100%;
/*		height:10vh;*/
	}
}

.login-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
   	text-align: center;
   	/*margin-top: 10%;*/
}
.login-form input[type="text"], .login-form input[type="password"] {
    width: 100%;
    padding: 14px 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.login-form button:hover {
    background-color: #0056b3;
}
.login-form .change-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}
.login-form .change-password:hover {
    text-decoration: underline;
}
.login-form form ul li{
	display: block;
	width: 100%;
	position: relative;
}
.login-form form ul li label{
	position: absolute;
    left: 12px;
    top: 4px;
    background: #fff;
    font-size: 12px;
    padding: 0 1px;
}
.login-form .logo-block{
	margin: 2% auto;
}















