body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
}
.main{
	width: 350px;
	height: 500px;
	background: red;
	overflow: hidden;
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;

/* test */

}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 10px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #573b8a;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #6d44b8;
}
.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #573b8a;
	transform: scale(.6);
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}
.Dashboard_body{
    background: red;
	overflow: visible;
    text-align: center;
    display: block;
    padding-bottom: 10%;
    background: linear-gradient(to bottom, #c0c0c0, #808080, #404040);
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
.Dashboard_body body{
	margin: 0;
	padding: 0;
	overflow: visible;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
}
.Dashboard{

	background: red;
	overflow: hidden;
    text-align: center;
    display: block;
    background: linear-gradient(to bottom, #c0c0c0, #808080, #404040);
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
.Dashboard h2{
    text-align: left;
}
.Dashboard button{
    width: 60%;
	height: 40px;
	margin: 10px auto;
	display: block;
	color: #721616;
	background: rgb(49, 48, 48);
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}

.Dashboard button:hover{
	background: #6d44b8;
}
.Dashboard a{
    text-decoration: none;
    color: #ce3a00;
    font-size: 1.5em;
    font-weight: bold;
    display: block;
    text-align: center;
}
.logout button{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10%;
    margin-top: 0px;
}

.input-box {
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
    background: #f3f3f3;

    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

.input-box h2 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.input-box form {
    display: flex;
    flex-direction: column;
}

.input-box label {
    margin-top: 10px;
    font-weight: bold;
    color: #444;
}

.input-box input,
.input-box select,
.input-box textarea {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background-color: white;
}

.input-box button {
    margin-top: 20px;
    padding: 12px;
    background-color: #313030;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease-in;
}

.input-box button:hover {
    background-color: #444;
}