.popup button {
    background-color: #FFC000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup button:hover {
    background-color: #C09200;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.form-container {
    width: 100%;
}

.toggle button {
    width: 50%;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.toggle button.active {
    border-bottom: 2px solid #C09200;
}

.form {
    margin-top: 20px;
}

.form input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.form p {
    margin-top: 15px;
}

a {
    color: #FFC000;
    text-decoration: none;
}