* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FFF1EB;
}

.container {
  
}

h1 {
    text-align: center;
    color: #997FFF; /* Lavanda oscuro */
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #CCC;
    background-color: #e1d8f7; /* Color melocotón claro */
}

input:focus {
    border-color: #B29FFF; /* Lavanda oscuro */
    outline: none;
}



.inputForm {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #CCC;
    background-color: #e1d8f7; /* Color melocotón claro */
}

.inputForm:focus {
    border-color: #B29FFF; /* Lavanda oscuro */
    outline: none;
}




button {
    padding: 12px;
    font-size: 18px;
    background-color: #B29FFF; /* Lavanda oscuro */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #997FFF; /* Lavanda medio */
}

.error-message {
    color: #FF4444; /* Rojo para el error */
    font-size: 14px;
    text-align: center;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    text-align: center;
}
 .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1030;
            background-color: #f8f9fa;
            box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            margin: 0 auto;
        }
        .navbar-brand img {
            width: 150px;
        }
        .counter-container {
            text-align: center;
            margin-top: 50px;
        }
        .counter {
            font-size: 25px;
            color: #997FFF;
            margin-bottom: 20px;
        }
        .message {
            font-size: 18px;
            color: #555;
            margin-top: 20px;
        }
        .features {
            font-size: 16px;
            color: #777;
            margin-top: 15px;
        }
        .social-buttons {
            margin-top: 30px;
        }
        .social-buttons .btn {
            margin: 5px;
        }
