
img{
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
}
body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f8f9fa;
}

.form-control {
	border-radius: 10px;
	padding: 12px 45px 12px 15px;
	color: black;
}
.container{
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.input-group-text {
	background: transparent;
	border: none;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	color: #9b9999;
}
.input-group-text:hover {
	color: #645f5f;
}
.form-text {
	font-size: 0.875em;
}
.button-style {
	padding: 10px;
	font-size: 1rem;
	background-color: #33c233;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 10px;
}
.button-style:hover {
	background-color: #28a745;
}
.form-style {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
}
.toggle-text {
	margin-top: 10px;
	color: #00af00;
	cursor: pointer;
	text-decoration: underline;
}
.container{
	perspective: 1000px;
}
.flip-card {
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	width: 100%;
	max-width: 360px;
	height: 600px;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s;
}

.flip-card-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform-style: preserve-3d;
	transition: transform 0.6s;
}

.flip-card-front,
.flip-card-back {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	background-color: transparent;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	color: #333;
}

.flip-card-back {
	transform: rotateY(180deg);
}
