* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('/api/placeholder/1920/1080') center/cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.register-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h1 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.logo p {
    color: #666;
    font-style: italic;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.input-group {
    flex: 1;
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #e74c3c;
}

.terms {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    color: #666;
    gap: 0.5rem;
}

.terms input {
    margin-top: 0.3rem;
}

.terms label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms a {
    color: #e74c3c;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.btn-register {
    width: 100%;
    padding: 1rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #c0392b;
}

.login-link {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
}
button{
    -webkit-tap-highlight-color: transparent;
}
.login-link a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}