.solution-setting-container {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(to right, #ba2d2d, #5335c9);
	padding: 20px;
	border-radius: 8px;
	margin: 10px;
}

.solution-setting-login-wrapper {
	width: 80%;
	background-color: #fff;
	padding: 15px 30px;
	border-radius: 8px;
}

.solution-setting-login-name h1 {
	color: #000;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.solution-setting-form-group {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.solution-setting-inputs {
	margin-bottom: 15px;
}

.solution-setting-inputs input {
	height: 35px;
	width: 100%;
	border: none;
	outline: none;
	font-size: 16px;
	padding: 5px;
}

.solution-setting-inputs input::placeholder {
	color: rgb(120, 113, 113);
}

.solution-setting-inputs:focus {
	border: none;
	box-shadow: none;
}

.solution-setting-underline-input {
	height: 2px;
	max-width: 100%;
	background-color: rgb(200, 189, 189);
	position: relative;
}

.solution-setting-underline-input::before {
	position: absolute;
	content: "";
	height: 2.2px;
	border-radius: 3px;
	width: 0%;
	background: linear-gradient(to right, #ba2d2d, #5335c9);
	transition: all 0.3s ease;
}

.solution-setting-inputs input:focus~.solution-setting-underline-input::before {
	width: 100%;
}

.solution-setting-checkbox {
	margin-top: 10px;
}

.solution-setting-text-sm {
	font-size: 12px;
	text-align: center;
	margin-top: 20px;
}

.solution-setting-notification-box {
	position: fixed;
	top: 60px;
	right: 10px;
}