body {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
	background: #212121;
}

.nav-sm .radar-container .right_col {
    padding: 10px 20px;
    margin-left: 70px;
    z-index: 2
}

.terroristbox{
	height: calc((100% - 20px) / 5);
	width:calc((100% - 960px) / 2);
	border:1px #FCB00D solid;
	margin-right: 5px;
	margin-left: 5px;
	background:rgba(0,0,0,0.5);
}

.counterbox{
	height: calc((100% - 20px) / 5);
	border:1px #5BCBCC solid;
	margin-right: 5px;
	margin-left: 5px;
	background:rgba(0,0,0,0.5);
}

#left{
	width:calc((100% - 960px) / 2);
	float: left;
	height:100vh;
	max-height: 960px;
}

#middle {
	border:2px #263238 solid;
	position:relative;
	display:block;
	z-index:10000;
}

#right{
	width:calc(((100% - 968px) / 2));
	float: right;
	height:100vh;
	max-height: 960px;
}

#radarcolor {
  background-color: #555;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 30px;
}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 90%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

.form-container .text {
  text-align: center;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

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

body {
	background-color: #000000;
	font-family: 'Courier New', Courier, monospace;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
	color: #ff8282;
}

.login-container {
	max-width: 600px;
	width: 90%;
	display: flex;
	flex-direction: column;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.swiss-cross {
	width: 60px;
	height: 60px;
	position: relative;
	background-color: transparent;
}

	.swiss-cross::before,
	.swiss-cross::after {
		content: '';
		position: absolute;
		background-color: #ff8282;
	}

	.swiss-cross::before {
		width: 18px;
		height: 60px;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}

	.swiss-cross::after {
		width: 60px;
		height: 18px;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

.logo-text {
	font-size: 42px;
	font-weight: 700;
	color: #ff8282;
	letter-spacing: 4px;
	text-transform: lowercase;
}

.terminal-box {
	border: 2px solid #ff8282;
	padding: 30px;
	background-color: #000000;
	box-shadow: 0 0 20px rgba(255, 130, 130, 0.3);
}

.system-message {
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.6;
	opacity: 0.8;
}

.prompt-line {
	margin-bottom: 5px;
}

.status-line {
	margin-bottom: 20px;
	font-size: 14px;
}

.input-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.prompt {
	font-size: 18px;
	font-weight: 700;
}

.input-wrapper {
	flex: 1;
	position: relative;
}

	.input-wrapper input {
		width: 100%;
		background-color: transparent;
		border: none;
		color: #ff8282;
		font-family: 'Courier New', Courier, monospace;
		font-size: 16px;
		padding: 5px 0;
		letter-spacing: 2px;
		caret-color: transparent;
	}

		.input-wrapper input:focus {
			outline: none;
		}

.cursor {
	display: inline-block;
	width: 10px;
	height: 18px;
	background-color: #ff8282;
	animation: blink 1s infinite;
	position: absolute;
	top: 5px;
}

@keyframes blink {
	0%, 49% {
		opacity: 1;
	}

	50%, 100% {
		opacity: 0;
	}
}

.submit-line {
	margin-top: 20px;
	font-size: 12px;
	opacity: 0.6;
}

.submit-btn {
	background-color: transparent;
	border: 1px solid #ff8282;
	color: #ff8282;
	padding: 10px 20px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 12px;
	cursor: pointer;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s;
	margin-top: 10px;
}

	.submit-btn:hover {
		background-color: #ff8282;
		color: #000000;
	}

/* Animation styles */
.loader {
	max-width: fit-content;
	color: #ff8282;
	font-size: 50px;
	font-family: 'Courier New', Courier, monospace;
	position: relative;
	font-style: italic;
	font-weight: 600;
	margin: 0 auto;
	display: none;
}

	.loader.active {
		display: block;
	}

	.loader span {
		animation: cut 2s infinite;
		transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.loader::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 6px;
		border-radius: 4px;
		background-color: #ff828291;
		top: 0px;
		filter: blur(10px);
		animation: scan 2s infinite;
		left: 0;
		z-index: 0;
		transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.loader::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 5px;
		border-radius: 4px;
		background-color: #ff8282;
		top: 0px;
		animation: scan 2s infinite;
		left: 0;
		z-index: 1;
		filter: opacity(0.9);
		transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

@keyframes scan {
	0% {
		top: 0px;
	}

	25% {
		top: 54px;
	}

	50% {
		top: 0px;
	}

	75% {
		top: 54px;
	}
}

@keyframes cut {
	0% {
		clip-path: inset(0 0 0 0);
	}

	25% {
		clip-path: inset(100% 0 0 0);
	}

	50% {
		clip-path: inset(0 0 100% 0);
	}

	75% {
		clip-path: inset(0 0 0 0);
	}
}

.loader.success::after,
.loader.success::before {
	background-color: #4ade80;
}

.loader.success {
	color: #4ade80;
}

.hidden {
	display: none;
}

.scanline {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient( to bottom, transparent 50%, rgba(255, 130, 130, 0.05) 51% );
	background-size: 100% 4px;
	pointer-events: none;
	animation: scanlines 8s linear infinite;
	opacity: 0.3;
}

@keyframes scanlines {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 100%;
	}
}