/* PAGE BACKGROUND */
.form-wrap {
	background: #f8f9fa;
	padding: 60px 15px;
}
/* FORM */
form {
	max-width: 1100px;
	margin: auto;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
/* HEADER */
.form-header {
	background-color: #27C977;
	padding: 25px 0px;
	color: #fff;
	text-align: center;
}

.form-header h2 {
	color: #000;
	font-family: "Kumbh Sans";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height:30px;
	letter-spacing: 0.591px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.form-header p {
	font-size: 14px;
	opacity: .9;
	margin: 0;
}
/* BODY */
.form-body {
	padding: 25px 30px;
}

.section {
	margin-bottom: 25px;
}

.section h3 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Kumbh Sans";
	margin-bottom: 15px;
}
/* STUDENT CARD */
.student {
	background: #f9fbff;
	border-radius: 10px;
	padding: 15px;
	border: 1px solid #e3e8f1;
	position: relative;
	margin-top: 15px;
}

.student strong {
	display: block;
	margin-bottom: 10px;
	color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    font-family: "Kumbh Sans";
}
/* INPUTS */
.student input, .student select {
	width: 100%;
	height: 50px;
	padding: 8px 12px;
	border-radius: 3px;
	border: 1px solid #d4deea;
	background: #fff;
	margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Kumbh Sans";
}

.student input:focus, .student select:focus {
	outline: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}
/* REMOVE BUTTON */
.remove-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: #ff4d4d;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

.remove-btn:hover {
	background: #e53935;
}
/* GRID */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
/* PRICE BAR */
.price-card {
	background: transparent;
	color: #000;
	padding: 15px 20px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Kumbh Sans";
	border-radius: 25.095px !important;
    border: 1px solid #000;
    box-shadow: 5px 5px 0 0 #000;
}
/* BUTTONS */
.add-btn {
	background: #27C977;
	color: #000;
	font-family: Inter;
	padding: 12px 20px;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 20px !important;
}

.add-btn:hover {
	opacity: 0.9;
}

.submit-btn {
	margin-top: 20px;
	width: 100%;
	height: 50px;
	border-radius: 25.095px;
	background: #27C977;
	box-shadow: 5px 5px 0 0 #000;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    text-transform: capitalize;
}

.submit-btn:hover {
	background: #27C977;
}
/* MOBILE */
@media (max-width: 768px) {
	.grid-2 {
		grid-template-columns: 1fr;
	}

	.form-header, .form-body {
		padding: 20px;
	}
}