/* Reset standar styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    height: 100%;
}

/* Layer untuk menampilkan form */
.form-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Layer transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Pastikan form di atas layer lainnya */
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Container Form */
.form-container {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e); /* Gradien warna gelap */
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3); /* Efek shadow */
}

/* Judul form */
.form-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

/* Styling untuk label */
label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

/* Styling untuk input fields */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    background-color: #333;
    color: #fff;
}

/* Styling untuk button */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Layer Virtual Tour */
#tourContainer {
    display: none; /* Sembunyikan konten tur sampai form disubmit */
    height: 100%;
    z-index: 2; /* Menempatkan konten tur di belakang form */
}

#pano {
    width: 100%;
    height: 100%;
}
