/* Global Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Container */
.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.header span {
    color: #FFD700; /* Vibrant yellow for emphasis */
    font-weight: bold;
}

.header p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: space-around;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.login-btn {
    background-color: #6A5ACD; /* Cool blue */
}

.signup-btn {
    background-color: #FF4500; /* Bright orange */
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #ccc;
}
