:root {
    --color-primary: #4f46e5;
    --color-primary-dark: #4338ca;
    --color-background: #f3f4f6;
}

.card-container {
    width: 100%;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.left-column {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background-color: #fffaf2;
    color: #555555;
    text-align: center;
}

.left-column h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.left-column p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.left-column i {
    color: #f28c20;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.right-column {
    padding: 2.5rem;
}

@media (min-width: 768px) {

    .card-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .left-column {
        display: flex;
    }

    .right-column {
        padding: 2.5rem;
    }
}

.header-section {
    text-align: center;
    margin-bottom: 2rem;
}

.header-section h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
}

.header-section p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-group input {
    display: block;
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 150ms ease-in-out;
    font-size: 0.875rem;
}

.form-group input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

/* Button */
.btn-reset-pass {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: #ff9800;
    transition: background-color 200ms ease-in-out;
    cursor: pointer;
}

.btn-reset-pass:hover:not(:disabled) {
    background-color: var(--color-primary-dark);
}

.btn-reset-pass:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--color-primary);
}


.message-area {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 300ms ease-in-out;
}

.success-message {
    color: #15803d;
    background-color: #dcfce7;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.error-message {
    color: #b91c1c;
    background-color: #fee2e2;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.footer-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-link a {
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 150ms ease-in-out;
}

.footer-link a:hover {
    color: var(--color-primary-dark);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
    margin-right: 0.75rem;
    height: 1.25rem;
    width: 1.25rem;
    color: white;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}