html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}*/
* {
    box-sizing: border-box;
}

body {
    /*margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;*/
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
    color: #333;
}

.top-banner {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    /*display: grid;
    grid-template-columns: 1fr auto 1fr;*/
    align-items: center;
    padding: 20px 30px;
    width:100%;
}

.logo img {
    width: 320px;
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-left:300px;
    width:80%;
}
.title-logo {
    width: 150px;
    height: auto;
}
    .banner-text h1 {
        /* margin: 0;
        font-size: 39px;*/
        font-weight: 700;
        font-size: 36px;
        text-align: center;
        margin-bottom: -20px;
        padding-left:10px
        
    }

.page-content {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.content-wrapper {
    width: 100%;
    max-width: 850px;
    /*padding-top: 120px;*/
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.info-text {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 30px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/*input[type="text"],*/
input[type="email"] {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
/* BUTTON */
button {
    padding: 12px;
    border: none;
    background-color: #0078d4;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 25px;
}

    button:hover {
        background-color: #005fa3;
    }

    button:active {
        transform: scale(0.98);
    }
/*button {
    width: 100%;
    padding: 18px;
    font-size: 22px;
    border: none;
    border-radius: 12px;
    background-color: #0078d4;
    color: white;
    cursor: pointer;
}
    button:hover {
        background-color: #005fa3;
    }*/
.message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    animation: fadeIn 0.3s ease;
}

.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    padding: 10px 0;
}

    .checkbox-container input {
        width: 26px;
        height: 26px;
    }

.footer {
    padding: 20px 0;
    font-size: 14px;
    color: #777;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* LICENSE PLATE */

.plate-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 30px auto;
}

.plate-image {
    width: 100%;
    display: block;
}

.plate-input {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 58px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 74px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    outline: none;
    color: #111;
}

.email-field input {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: 0.2s;
}

    .email-field input:focus {
        border-color: #0078d4;
        box-shadow: 0 0 0 4px rgba(0,120,212,0.15);
    }
.plate-input::placeholder {
    color: #666;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.plate-input:focus::placeholder {
    opacity: 0;
}
.plate-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
}
/* Spinner overlay */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner */
.spinner {
    width: 70px;
    height: 70px;
    border: 8px solid #ddd;
    border-top: 8px solid #0078d4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Optional: disable button while loading */
button.loading {
    opacity: 0.7;
    pointer-events: none;
}