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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 60px 40px;
}

.title {
    font-size: 3.5rem;
    color: #d81b60;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.enter-btn {
    background: linear-gradient(45deg, #f48fb1, #f06292);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.enter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 143, 177, 0.4);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
}

.close:hover {
    color: #d81b60;
}

.form-container {
    padding: 20px;
}

.form-toggle {
    display: flex;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: #fce4ec;
    color: #d81b60;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tab-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.tab-btn:last-child {
    border-radius: 0 10px 10px 0;
}

.tab-btn.active {
    background: #f48fb1;
    color: white;
}

.form {
    display: none;
}

.form.active {
    display: block;
}

.form h2 {
    color: #d81b60;
    margin-bottom: 20px;
    text-align: center;
}

.form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #fce4ec;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form input:focus {
    outline: none;
    border-color: #f48fb1;
}

.form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #f48fb1, #f06292);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(244, 143, 177, 0.4);
}