/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {
    background-color: #ff69b4; /* K-pop theme pink */
    padding: 20px;
    text-align: center;
    color: white;
}

header h1 {
    font-size: 3em;
	font-family: cursive;
    margin: 0;
}

header p {
    font-size: 1.2em;
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
}

.auth-section {
    background-color: white;
    padding: 20px;
    margin: 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.about-section {
	background-color: white;
    padding: 20px;
    margin: 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 800px;
}
.featured-section {
	background-color: white;
	text-align: center;
    padding: 20px;
    margin: 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 1200px;
}

.newarrival-section {
	background-color: white;
	text-align: center;
    padding: 20px;
    margin: 0 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 1200px;
}

#featured .pro-container {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	flex-wrap: wrap;
}

#featured .product1 {
	width: 23%;
	min-width: 250px;
	padding: 10px 12px;
	border: 1px solid #cce7d0;
}

#featured .product1 img{
	width: 100%;
	border-radius 20px;
}

#newarrival .pro-container {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	flex-wrap: wrap;
}

#newarrival .product1 {
	width: 23%;
	min-width: 250px;
	padding: 10px 12px;
	border: 1px solid #cce7d0;
}

#newarrival .product1 img{
	width: 100%;
	border-radius 20px;
}

h2 {
    color: #ff69b4;
	font-family: cursive;
    
}

h3 {
	color: #ff69b4;
	font-size: 2em;
	font-family: cursive;
	text-align: center;
	margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button.btn {
    background-color: #ff69b4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

button.btn:hover {
    background-color: #ff1493;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .auth-section {
        width: 90%;
    }
}