body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('pic4.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container-div {
    display: flex;
    justify-content: space-between;
}

.container {
    width: 350px;
    background-color: rgba(68, 68, 68, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    margin: 0px 10px;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"], textarea {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    resize: none;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #007bff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.notification {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    border-radius: 6px;
    color: white;
    text-align: center;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.notification.show {
    display: block;
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    0% { top: -50px; }
    100% { top: 20px; }
}

.latest-news {
    margin-bottom: 20px;
    margin-top: -10px;
    font-weight: bold;
}

.text-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #555;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: center;
}

.text-btn:hover {
    background-color: #333;
}
