/* STILURI GLOBALE DE BAZĂ */

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    background-color: #f5f5f5;
}

/* Container general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

/* Texte introductive */
.intro-text {
    color: #545454;
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.intro-text-foto {
    color: white;
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.center-text {
    color: #545454;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 1px;
}

/* Buton standard */
.btn {
    display: inline-block;
    padding: 10px 10px;
    margin-top: 10px;
    background-color: #0cc0df;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn:hover {
    color: #545454;
}

/* Mesaje generale */
.error-message {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(255, 0, 0, 0.6);
    color: white;
    font-weight: 700;
    border-radius: 6px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.success-message {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(0, 200, 0, 0.6);
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}