/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

h1, h2 {
    text-align: center;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.auth-buttons form {
    margin: 0 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

.attention_Styles{
    text-align: center;
    background-color:yellow;
    padding:5px;
    margin:5px 10px 15px 10px;
    border-radius: 10px;
}

.attention_Styles h2{
    color:red;
}



.upload-guidelines-container {
    width:90%;
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dropbox-wrapper{
    padding:30px;
    background-color:navy;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .auth-buttons form button {
        width: 100%;
        padding: 12px;
    }

    .upload-guidelines-container {
        padding: 15px;
    }

    .guideline-block p {
        font-size: 14px;
    }

    .image-placeholder img {
        width: 100%;
        height: auto;
    }
    
    .attention_Styles{
    text-align: center;
    background-color:yellow;
    padding:5px;
    margin:5px 10px 15px 10px;
    border-radius: 10px;
}

.attention_Styles h2{
    color:red;
}
    
    
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    .guideline-block p {
        font-size: 12px;
    }
    
    .auth-buttons form button {
        padding: 15px;
        font-size: 14px;
    }
}
