*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: rgba(0, 0, 0, 0.1);
    background-image: url('images/register_background community.jpg');
   
    background-position: center top;
    background-size: 1100px 1800px;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-button {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.logo {
   
    background-color:rgb(10, 10, 204);

    border-radius: 8px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.subtitle {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #333;
}

input::placeholder, select::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    background-color: #000080;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 1rem;
}

.terms {
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.terms a {
    color: #000080;
    text-decoration: none;
}