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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1f1f1f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Title Style */
h1 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #f2a365;
}

/* Button Container Style */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Button Styles */
button {
    background-color: #f2a365;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: white;
}

button:hover {
    background-color: #f08a5d;
    transform: translateY(-5px);
}

button:active {
    transform: scale(0.95);
}

/* Footer Style */
.footer {
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    max-width: 90%;
    
    color: white;
    position: relative;
    text-align: left;
}

/* Modal close button */
.close {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.close:hover {
    color: #f08a5d;
}

/* Input styles */
label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f2a365;
}

input, select {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background-color: #3d3d3d;
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

input::placeholder {
    color: #bfbfbf;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        width: 90%;
    }
}