*{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body,html{
	width:100%;
	height:100%;
	font-size:16px;
}



/* Base Styles */
.container1 {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center container horizontally */
}

.form-heading {
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#signup-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.popup-content {
    text-align: center;
}

#done-button {
    background-color: #28a745;
}

#done-button:hover {
    background-color: #218838;
}

#signup-popup {
    display: none;
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .container1 {
        padding: 15px;
        margin: 0 10px; /* Adjust margin for small screens */
        box-shadow: none; /* Optional: remove shadow for mobile view */
    }

    .form-heading {
        font-size: 20px; /* Adjust font size for smaller screens */
    }

    input {
        width: calc(100% - 20px); /* Adjust width to fit screen */
    }

    button {
        padding: 12px; /* Increase padding for better touch experience */
        font-size: 14px; /* Adjust font size */
    }

    #signup-popup {
        width: 90%; /* Make popup width responsive */
        padding: 15px; /* Adjust padding */
    }
}

@media (max-width: 480px) {
    .container1 {
        margin: 0 5px; /* Further adjust margins for very small screens */
    }

    .form-heading {
        font-size: 18px; /* Smaller font size for very small screens */
    }

    button {
        padding: 10px; /* Further adjust padding */
        font-size: 12px; /* Smaller font size */
    }
}
