:root {
    --primary-color: #1d327b;
    --secondary-color: #ffffff;
}
.container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	min-height: 100%;
	background-color: #ffffff;
	border-radius: 15px;
}
.half {
	flex: 1;
}
.left {
	background-color: #E4E8F8;
	display: flex;
    align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding-left: 20%;
}
.left h1 {
	font-weight: normal;
	color: white;
}
.right {
	background-color: #ffffff;
	text-align: center;
	align-items: center;
	justify-content: center;
	gap: 34px;
	padding: 25px;
    display: flex;
	flex-direction: column;
	padding-right: 20%;
}
@media (max-width: 992px) {
	.half { min-width: 100%; }
	.left,
	.right {
		padding: 1rem;
	}
}
.svg-container {
    width: 300px;
    height: auto;
    aspect-ratio: 405 / 832;
    position: relative;
}
.svg-container svg {
    width: 100%;
    height: 100%;
    display: block;
}
.iphone-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: white;
}
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content {
    position: relative;
	height: 395px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    text-align: center;
    background-color: var(--secondary-color);
    padding: 20px;
	display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.name {
    font-size: 24px;
    color: var(--primary-color);
	font-weight: 500;
}
.role {
    font-size: 20px;
	color: var(--primary-color);
	font-weight: 300;
}
.action-button-container {
    place-items: center;
    display: grid;
	place-items: center;
    display: grid;
    position: absolute;
    top: 93%;
    border-bottom-right-radius: 34px;
    border-bottom-left-radius: 34px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    width: 90%;
    padding: 5px;
}
.social-icons {
	margin-bottom: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	justify-content: center;
}
.details {
    margin-top: 20px;
}
.icon {
    width: 40px;
    height: 40px;
	border-radius: 15px;
}
.icon-text {
	color: var(--primary-color);
}
.action-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 40px;
    transition: background 0.3sease;
    background: var(--primary-color) 0% 0% no-repeat padding-box;
    border-radius: 7px;
    opacity: 1;
    font-weight: bold;
    align-items: center;
	border: none;
}
.action-button-text {
    color: var(--secondary-color);
}
.action-button svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
	stroke: var(--secondary-color);
}
.form-group label {
	text-align: right;
	font-weight: 300;
	letter-spacing: 0px;
	color: #5371FF;
	opacity: 1;	
	font-size: 20px;
}
.form-group {
	display: flex;
	/* justify-content: space-around; */
	justify-content: space-between;
	align-items: center;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-dialog {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 10% auto;
}
.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.modal-title {
    font-size: 18px;
    font-weight: bold;
}
.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.close:hover {
    color: red;
}
.modal-body {
    padding: 20px 0;
    text-align: center;
}
.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.modal-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.btn-secondary {
    background-color: #6c757d;
    color: white;
}
.btn-secondary:hover {
    background-color: #5a6268;
}
.btn-primary {
    background-color: #007bff;
    color: white;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.icon-container {
	position: relative;
}

#recaptchaModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
#recaptchaV2Container {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
	min-width: 300px;
	text-align: center;
	position: relative;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}
.message {
	margin-bottom: 15px;
	font-size: 18px;
}
#step1form {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
#step1form label, #step1form input {
	display: block;
	margin: 10px 0;
}
#step1form input {
	border: none;
	background: none;
	font-size: 24px;
	text-align: center;
	outline: none;
}
#step1form input::placeholder {
	color: #5371FF;
	font-weight: 300;
	letter-spacing: 0px;
}