* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	background-color: #004040;
	color: white;
	line-height: 1.6;
	overflow-x: hidden;
	background-image: url('./public/bg-1.png');
	background-repeat: no-repeat;
	background-size: cover;
}

img {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header Styles */
header {
	background-color: #012847;
	padding: 15px 0;
}



.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 150px;
	cursor: pointer;
}

.logo-title {
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
}

 @media (max-width: 1200px) {
	.logo-title {
		display: none;
	}
	
 }
 .logo-title {
	font-size: 1.2rem;
	font-weight: bold;
	text-transform: uppercase;
}

 

.header-buttons {
	display: flex;
	
}

.btn {
	padding: 3px 21px;
	border-radius: 2px;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-contact {
	padding: 3px 21px;
	border-radius: 2px;
	margin: 6px 0px;
	cursor: pointer;
	 font-weight: bold;
	transition: all 0.3s ease;
}
 .btn-contact:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.btn-login {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #1DB12D;
	background: transparent;
}
.btn-login img {
	color: #1DB12D;
}

.btn-signup {
	color: #000;
	background-color: #01FF03;
	border: 1px solid #01FF03;
}

.btn-mobile {
	display: none;
}

@media screen and (max-width: 1200px) {
	.logo {
		width: 100px;
	}
	.btn-login {
		font-size: 12px;
	}
	.btn-signup-header {
		font-size: 12px;
		margin-right: 8px;
		padding-left: 4px;
		padding-right: 4px;
		text-decoration: underline;
		display: none;
	}
	
	 .btn-mobile {
	display: block;
}

.header-buttons {
	gap: 0px;

}
	
}

.btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.btn-test {
	background-color: #003535;
	color: white;
	font-size: 12px;
	padding-top: 2px;
	border: 1px solid white;
	box-shadow: 0 0 0 2px #003535;
}


.whatsapp-button a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25D366;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	z-index: 100;
	cursor: pointer;
}

.whatsapp-button a:hover {
	background-color: #00aa55;
}



/* Form */

.input-area {
	display: flex;
	flex-direction: column;
	width: 80%;
	margin-top: 20px;
}

.input-area input {
	border-radius: 4px;
	border: 0;
	padding: 4px;
}


.myaccount-container {
   width: 90%;
	margin-left: 10%;
	margin-right: 10%;
	background-repeat: 3;
	flex-grow: 1;
}



.myaccount-container::before {
	content: 'Put Call Bot';
	position: absolute;
	top: 150px;
	font-size: 54px;
	margin-top: 40px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	text-transform: uppercase;
	color: #ccc;
	opacity: 0.6;
	letter-spacing: 4px;
	font-weight: 900;
}

.myaccount-section {
	position: relative;
	width: 60%;
	 margin-left: 10%;
	margin-right: 10%;
	margin-top: 65px;
}

.button-area {
	gap: 10px;
	position: absolute;
	top: -50px;
}

@media screen and (max-width: 1200px) {
	.button-area {
		left: 0px;
	}
	 .header-buttons {
	gap: 0px;
}
}



@media screen and (max-width: 600px) {
	.myaccount-section {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
	
}

.myaccount-container button {
	background-color: #CEFF00;
	color: #004040;
	font-weight: bold;
	width: 120px;
	height: 30px;
	border: 0px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.form-div::after {
	display: table;
	content: '';
	height: 36px;
	width: 36px;
	position: absolute;
	top: 20px;
}


.form-div:after {
	background-image: url('./public/icons/pluswhite.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.form-div.open::after {
	background-image: url('./public/icons/minuswhite.svg');
}




.form-div {
	width: 900px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	position: relative;
	background-color: #012847;
	transition: all .3s ease;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px 0px;
}

.form-title {
	padding: 20px 10px;
	text-indent: 50px;
	z-index: 9;
	cursor: pointer;

}


.form-div p {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.3s ease;
}


.form-div.open p {
	max-height: 2000px;
	opacity: 1;

}





/* Footer */
footer {
	background-color: #003535;
	padding: 15px 0;
}

.social-links {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	border-top: 1px solid #ccc;
	padding-top: 20px;
}

.social-link-icon {
	display: flex;
	gap: 2px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright {
	font-size: 14px;
	margin-bottom: 20px;
}

.footer-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

@media screen and (max-width: 1200px) {
	.social-links {
		flex-direction: column;
	}

	
	  .myaccount-container::before {
		display: none;
	}
	.myaccount-container {
		margin: 0px;
		margin-left: auto;
		margin-right: auto;
		padding: 0px;
	}

	.myaccount-section {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.form-div {
		width: 100%;
	}

	.form-div h1 {
		text-indent: 0px;
		font-size: 16px;
		padding-left: 35px;
	}

	 .form-div::after {
   width: 24px;
   height: 24px;
   top: 21px;
}