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

:root {
    --color-primary: #E20F7A;
    --color-dark: #1D1D1F;
    --color-success: #35B270;
    --color-error: #E34B4A;
    --color-bg-light: #F5F5F7;
    --color-text: #1D1D1F;
    --color-text-secondary: #6C757D;
    --color-warning: #E67E22;
}

body {
    background: var(--color-bg-light);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

 .form-wrapper {
     background-color: #fff;
     padding: 40px;
     border-radius: 8px;
     width: 100%;
     max-width: 500px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
 }

 @media (max-width: 480px) {
     .form-wrapper {
         padding: 24px 20px;
         border-radius: 0;
         box-shadow: none;
     }
 }

 .contenedor-input {
     margin-bottom: 15px;
 }

 .contenedor-input input {
     width: 100%;
     padding: 10px;
     border-radius: 6px;
     border: 1px solid #CCCCCC;
     background-color: #fff;
 }

 .tab-btn {
     background-color: var(--color-primary);
     color: #fff;
     padding: 12px 20px;
     border: none;
     border-radius: 8px;
     margin-top: 15px;
     width: 100%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
     font-weight: 700;
     font-family: 'Poppins', sans-serif;
     position: relative;
     overflow: hidden;
 }

 .tab-btn:hover {
     background-color: #c40d6b;
 }

 .tab-btn:disabled {
     background-color: #E0E0E0;
     color: #A0A0A0;
     box-shadow: none;
 }

 .switch-form {
     text-align: center;
     margin-top: 15px;
 }

 .switch-form a {
     color: var(--color-primary);
     cursor: pointer;
     text-decoration: underline;
     font-weight: bold;
 }

 .req {
     color: var(--color-warning);
 }

 label {
     margin-bottom: 5px;
     display: block;
     text-align: left;
     font-weight: 600;
     font-size: 0.875rem;
 }

 .hidden {
     display: none;
 }

 .logo-container {
     margin-bottom: 30px;
 }

 .logo-container img {
     height: 60px;
 }

.feedback {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    margin-top: 5px;
}

.feedback.success {
    color: var(--color-success);
}

.feedback.error {
    color: var(--color-error);
}

.input-valid {
    border-color: var(--color-success);
}

.input-invalid {
    border-color: var(--color-error);
}

.form-message {
    font-size: 0.875rem;
    margin-top: 4px;
}

.form-message.error {
    color: var(--color-error);
}

.form-message.success {
    color: var(--color-success);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 600ms linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}