/* streama-frontend/styles.css */

body {
    font-family: 'Arial', sans-serif;
    background-color: #174e2d;
    color: #1d1d1d;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container for main content */
.container {
    text-align: center;
    background: black;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    transition: transform 0.3s;
}

/* Hover effect for container */
.container:hover {
    transform: translateY(-5px);
}

/* Headings */
h1 {
    color: #28A745;
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    color: #218838;
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Paragraphs */
p {
    color: #666666;
    margin-bottom: 20px;
}

/* Button styles */
.button {
    padding: 15px 20px;
    background-color: #28A745;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin: 5px 0;
    font-size: 1em;
    border: none; /* Remove default button border */
}

.button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Input styles */
input, textarea {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Input focus effect */
input:focus, textarea:focus {
    border-color: #28A745;
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* Footer styles */
footer {
    background-color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;
    border-top: 1px solid #CCCCCC;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/* Footer links */
.footer-links a {
    color: #28A745;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Copyright text */
.footer-copyright {
    color: #9bd5dd;
}

/* Media Queries for Responsive Design */
@media (min-width: 600px) {
    .button-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .button {
        font-size: 1.1em; /* Slightly larger buttons on wider screens */
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 2em; /* Smaller headings on smaller screens */
    }
    
    .button {
        padding: 12px 15px; /* Smaller buttons on mobile */
    }
}
