body {
	font-family: 'Ubuntu', sans-serif;
	margin: 0px;
}
.wrapper {
	background: #b3b1b1ff url(/images/background.png) center / cover no-repeat;
}
.global {
	font-size: 16px;
	color: #fff;
	text-align: center;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: stretch;
}
.global a {
	text-decoration: none;
	cursor: pointer;
}
.innerFrame {
	display: flex;
	flex-direction: column;
	width: 1024px;
	min-height: 100vh;
	position: relative;
	border-radius: 0px 0px 12px 12px;
}

/* header */
.topFrame {
  text-align: center;
  height: 80px;
  padding: 10px;
  position: relative;
}
.topFrame .logo {
	background-image: url(/images/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 256px;
	height: 171px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -20%);
	z-index: 10;
}

/* Center Frame */
.centerFrame {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 125px 20px 20px;
    flex: 1;
}
.mainFrames {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 75px;
}

/* Left Frame and Richt Frame */
.leftFrame, .rightFrame{
	width: 40%;
	min-width: 350px;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.statusPanel{
	background-color: rgba(0,0,0,0.5);
	text-align: left;
	width: 360px;
	padding: 15px;
	border-radius: 12px;
}
.accountModule{
	background-color: rgba(0,0,0,0.5);
	width: 360px;
	padding: 15px;
	margin-top: 40px;
	border-radius: 12px;
}
.tabs {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 8px;
}
.tab {
	width: 125px;
	padding: 8px 0;
	background-color: rgba(0,0,0,0.5);
	border: 1px solid #FFF;
	cursor: pointer;
	text-align: center;
}
.tab.active {
	background: rgba(0,0,0,0.6);
	border-bottom: 2px solid #fff;
}
.tabContent {
    display: none;
}
.tabContent.active {
    display: block;
}
.accountModule input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: none;
    border-radius: 4px;
}
.formRow {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.formRow label {
	width: 100px;
	text-align: right;
	margin-right: 10px;
	font-size: 14px;
}
.formRow input {
    width: 175px;
}
.formRow select {
    width: 175px;
    padding: 6px;
    border-radius: 4px;
    border: none;
}
.gender-options {
    display: flex;
    width: 175px;
    align-items: center;
}
.gender-option {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.msg-error {
	background: #8b0000;
	padding: 8px;
	border-radius: 6px;
	margin-bottom: 8px;
}
.msg-success {
	background: #006400;
	padding: 8px;
	border-radius: 6px;
	margin-bottom: 8px;
}

/* News Module */
.newsModule {
	width: 360px;
	padding: 15px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 12px;
    text-align: left;
}
.newsHeader {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #fff;
	padding-bottom: 6px;
}
.newsItem {
    margin-bottom: 14px;
}

.newsDate {
    font-size: 12px;
    opacity: 0.8;
}

.newsTitle {
    font-size: 14px;
    font-weight: bold;
    margin: 4px 0;
}
.newsText {
    font-size: 13px;
    line-height: 1.4;
}

.newsFooter {
    margin-top: 10px;
    text-align: right;
    font-size: 13px;
}
.newsFooter a {
	font-size: 12px;
	color: #ecc490;
	padding: 10px;
}
.newsFooter a:hover {
	color: #cc882f;
	font-size: 12px;
	padding: 10px;
}

/* language */
.languageFrame {
    width: 85%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px 20px;
	
	display: flex;
	align-items: center;
	gap: 5px;

    text-align: left;
    height: 60px;
    background-color: rgba(0,0,0,0.4);
    border-radius: 8px;
}
.languageFrame .flag {
    width: 52px;
    height: 75px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 4px;
}

.languageFrame .flag:hover {
    transform: scale(1.05);
}

/* footer */
.bottomFrame {
	font-size: 12px;
	background-color: #000;
	text-align: center;
	padding: 10px;
}
