
/* CSS Reset - Resets default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    text-align: center;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    background-image: url(../images/bg.jpg);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 232px;
}

.container {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 432px;
    box-sizing: border-box;
}

.container img {
    margin-bottom: 20px;
}

h2 {
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #e7b840;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
}
a:hover {
    color: #111;
}

input {
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 20px;
    width: 100%;
    background-color: #f4f5f7;
    text-align: center;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #afafaf; /* Lighter color for placeholder text */
}

button {
    padding: 20px 15px;
    border: none;
    background-color: #098a12;
    color: white;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    border-radius: 100px;
}

button:hover {
    background-color: #07620e;
}

#error-message {
    color: red;
    margin-top: 10px;
    display: none;
}

#new-content {
    display: none;
}

.hide {
    display: block;
}

@media (max-width: 500px) { 

    .container {
        padding: 20px;
    }

    .container img {
        width: 140px;
    }

    h2 { 
        font-size: 20px;
    }

    input {
        padding: 10px;
        margin-bottom: 15px;
        font-size: 18px;
    }

    button {
        padding: 15px 10px;
        font-size: 20px;
    }

    .hide {
        display: none;
    }
}