
body {
background-color: #e6e6e6;
font-family: Arial, Helvetica, sans-serif;
}

.blink_me {
  animation: blinker 1s linear infinite;
  font-color: red;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

.form1 {
	border:thin;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #bfbdbd;
	box-shadow: 1px 1px 1px 1px #0F0F0F;
	border-color: #fc6b03 #f7c994 #f7c994 #fc6b03;
}

a {
	text-decoration: none;
	font-color: black;
}

a:hover {
	text-decoration: underline;
	font-color: black;
	opacity: 1.0;
	
}
table.general {
	border-spacing: 0px;}
.general th, .general td {
	padding: 5px 30px 5px 10px;
	border-spacing: 0px;
	font-size: 80%;
	font-weight: normal;
	margin: 0px;}
	
.general th, .general td {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #e0e9f0;
	border-top: 1px solid #f1f8fe;
	border-bottom: 1px solid #cbd2d8;
	border-right: 1px solid #cbd2d8;}
.general tr.head th {
	color: #fff;
	background-color: #90b4d6;
	border-bottom: 2px solid #547ca0;
	border-right: 1px solid #749abe;
	border-top: 1px solid #90b4d6;
	text-align: center;
	text-shadow: -1px -1px 1px #666666;
	letter-spacing: 0.15em;}
.general td {
	text-shadow: 1px 1px 1px #ffffff;}
.general tr.even td, .general tr.even th {
	background-color: #e8eff5;}
.general tr.head th:first-child {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;}
.general tr.head th:last-child {
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;}

.loginbox {
  font-family: Arial;
  max-width: 210px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  max-width: 330px;
  height: 45px;
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: red;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}
	

.card {
  font-family: Arial;
  max-width: 210px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  max-width: 330px;
  height: 45px;
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: #ffb700;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}

.card2 {
  font-family: Arial;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
  
  height: 45px;
  padding: 55px;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: #ec78f5;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}
.card3 {
  font-family: Arial;
  max-width: 410px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: center;
  max-width: 410px;
  height: 130px;
  padding: 35px;
  margin: auto;
  width: 60%;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);
}

.img-gradient{
  position:relative;
  display:inline-block;
}

.card-footer {
  font-size: 0.65em;
  font-family: Arial;
  color: #446;
}

.submit {
background-color: #d4d4d4;
height:35px;
width: 220px;
color: black;
font-size: 16px;
border-radius: 12px;
}

.input1 {
height: 30px;
border-bottom: thin;
border-bottom-color: white;
background-color: #dedede;
border-right: thin;
border-right-color: white;
border-left: small;
border-left-color: black;
border-top-color: black;
border-top: small;
color: black;
}
.input1:focus{
    background-color: white; /* or any other color you want when user starts typing in input */
}

.btn {
  --btn-color: rgb(124 45 18);
  --btn-bg: rgb(252 211 77);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  padding: 14px 22px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: system-ui;
  border: 2px solid var(--btn-color);
  transition: 100ms ease;
  box-shadow: 5px 5px 0 0 var(--btn-color);
}

.btn--secondary {
  --btn-color: #444;
  --btn-bg: #fafafa;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn:hover {
  box-shadow: 2px 2px 0 0 var(--btn-color);
}

.btn:active {
  transition: 50ms ease;
  box-shadow:  0 0 0 0 var(--btn-color);
}

.btn:focus-visible {
  outline: 0;
  --btn-color: #002cc8;
}

.btn:focus-visible::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  content: "\21E7";
  animation: float .5s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateX(-50%) translatey(0px);
	}
	50% {
		transform: translateX(-50%) translatey(-6px);
	}
	100% {
		transform: translateX(-50%) translatey(0px);
	}
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


.box {
  position: relative;
  margin: 40px auto;
  width: 300px;
  height: 150px;
  background: #fff;
  border-radius: 2px;
}

.box::before,
.box::after {
  content: '';
  position: absolute;
  bottom: 10px;
  width: 40%;
  height: 10px;
  box-shadow: 0 5px 14px rgba(0,0,0,.7);
  z-index: -1;
  transition: all .3s ease-in-out;
}

.box::before {
  left: 15px;
  transform: skew(-5deg) rotate(-5deg);
}

.box::after {
  right: 15px;
  transform: skew(5deg) rotate(5deg);
}

.box:hover::before,
.box:hover::after {
  box-shadow: 0 2px 14px rgba(0,0,0,.4);
}

.box:hover::before {
  left: 5px;
}

.box:hover::after {
  right: 5px;
}

.letter {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin: 26px auto 0;
  max-width: 550px;
  min-height: 300px;
  padding: 24px;
  position: relative;
  width: 80%;
}
.letter:before, .letter:after {
  content: "";
  height: 98%;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.letter:before {
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  left: -5px;
  top: 4px;
  transform: rotate(-2.5deg);
}
.letter:after {
  background: #f6f6f6;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  right: -3px;
  top: 1px;
  transform: rotate(1.4deg);
  }

.box1 {
box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.RezeptContainer {
	width: 300px;
	height: 150px;
	}
	
.RezeptImg {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;	
}



