@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 20px;
    background: url('tech-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 5px 0; /* Decreased padding for a smaller bar */
    z-index: 1000; /* Ensure it stays on top */
}

#account-info {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

button {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 15px;
    margin-top: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #007bff, #93c4ce);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #00aaff);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
}

textarea {
    width: 100%;
    min-height: 120px;
    max-height: 250px;
    border-radius: 12px;
    border: 1.5px solid #007bff;
    padding: 6px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    resize: vertical;
}

textarea:focus {
    border-color: #0056b3;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
    outline: none;
}

textarea::-webkit-scrollbar {
    width: 5px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 20px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 150px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); /* Umbra mai pronunțată pentru un efect modern */
    padding: 25px;
    width: 450px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 0.8s ease-out forwards;
}

.center-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4); /* Umbra devine mai puternică */
}

input[type=text] {
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid #007bff;
    padding-left: 12px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type=text]:focus {
    border-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    outline: none;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.grad1 {
    background: linear-gradient(135deg, #00d5ff, #b0d5f9);
}

.grad2 {
    background: linear-gradient(135deg, #c800ff, #ce93bb);
}

.grad3 {
    background: linear-gradient(135deg, #ff9500, #e4cc98);
}