﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(180deg, #0064E1 0%, #0845C2 100%);
    min-height: 100vh;
    padding: 15px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgb(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #adc1e58f;
    color: #ffffff;
}


header {
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container-header {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.col {
    flex: 1;
    display: flex;
    align-items: center;
}

.col-1 {
    justify-content: flex-start;
}

.col-2 {
    justify-content: center;
}

.col-3 {
    justify-content: flex-end;
}

/* Logo */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Titolo */
.title-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
    display: flex;
    width: 120px;
    padding-top: 3px;
}


/* Immagine */
.image-link {
    text-decoration: none;
    display: block;
}

.header-image {
    width: 120px;
    height: 50px;
    background: rgb(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
    header {
        padding: 15px;
    }

    .container-header {
        gap: 10px;
    }

    .logo {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }


    .header-image {
        width: 80px;
        height: 35px;
        font-size: 14px;
    }
}


.footer {
    margin-top: 30px;
    text-align: center;
    padding: 30px 15px;
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

    .footer a {
        color: #ffffff;
        text-decoration: none;
        margin: 0 10px;
        font-weight: 500;
        transition: color 0.3s;
    }

.footer-company {
    width: 100%;
    font-size: 11px;
    margin-top: 30px;
}
.error-container {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #000000;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    text-align: justify;
    padding: 10px;
}
.error-container a {
    color:#ffffff;
    text-decoration:none;
}
.error-container.show {
    display: block;
}
.success-container {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    background: #10b981;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    text-align:justify;
    padding:10px;
}

.success-container.show {
    display: block;
}
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 8px;
        font-size: 15px;
    }

    .footer a {
        margin: 4px 0;
    }
}
.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
}
.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size:20px;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    input[type="password"]:focus {
        outline: none;
        border-color: #000000;
    }

input[type="text"], textarea, select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    input[type="text"]:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #000000;
    }

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

.btn {
    padding: 14px 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

    .btn-secondary:hover {
        background: #d0d0d0;
    }

.btn-primary {
    background: #000000;
    color: white;
    flex: 1;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}