* {
    box-sizing: border-box;
    font-family: 'Malgun Gothic', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}
.signup-container {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
input:focus, select:focus {
    outline: none;
    border-color: #4D90FE;
    box-shadow: 0 0 5px rgba(77, 144, 254, 0.5);
}
.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}
button {
    width: 100%;
    padding: 14px;
    background-color: #4D90FE;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #357AE8;
}
.terms {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    text-align: center;
}
.terms a {
    text-decoration: none;
}
.terms a:hover {
    text-decoration: underline;
}
.success-message {
    text-align: center;
    color: #055727;
    font-weight: bold;
    margin-top: 20px;
    display: none;
}

.error-message {
    text-align: center;
    color: #a33205;
    font-weight: bold;
    margin-top: 20px;
    display: none;
}

/* .userid-duplicate{
    display: none;
    color: red; 
} */