@import 'common.css';

/* Page-specific styles */

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #00eeff, #d51ed5);
    background-size: 200% 200%;
    animation: wave 10s ease infinite;
}
@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar {
    background-color: #333333a4;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .nav-links {
    display: flex;
}

.burger {
    display: none;
    cursor: pointer;
    padding: 14px 0;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .burger {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .navbar a {
        width: 100%;
        text-align: left;
    }
    
    .content {
        margin-top: 30px;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    form {
        gap: 5px;
    }
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.content {
    display: flex;
    flex-direction: column;
    height: 60vh;
    padding: 20px;
    max-width: 800px;
    margin: 70px auto;
    background: linear-gradient(180deg, #ffffff44, #f0f0f0);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #00D707;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}
.info{
    display: flex;
    justify-content: center;
}