/* Settings Page Styles */
.modify-login-settings {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding: 2rem 1.5rem;
}

@media (min-width: 640px) {
    .modify-login-settings {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .modify-login-settings {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* Container */
.modify-login-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: rgb(255 255 255);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.tab-link {
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tab-link svg {
    margin-right: 0.75rem;
    height: 1.25rem;
    width: 1.25rem;
    transition: color 0.2s ease;
}

.tab-link.active {
    background-color: rgb(99 102 241);
    color: rgb(255 255 255);
}

.tab-link.active svg {
    color: rgb(255 255 255);
}

.tab-link:not(.active) {
    color: rgb(75 85 99);
}

.tab-link:not(.active):hover {
    background-color: rgb(243 244 246);
    color: rgb(17 24 39);
}

.tab-link:not(.active) svg {
    color: rgb(156 163 175);
}

/* Info and Warning Boxes */
.login-protection-info {
    background-image: linear-gradient(to right, rgba(239, 246, 255, 0.8), rgba(224, 231, 255, 0.8));
    border-left: 4px solid rgb(59, 130, 246);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-protection-info h3 {
    color: rgb(30, 64, 175);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-protection-info ul {
    margin-top: 0.75rem;
    padding-left: 1rem;
}

.login-protection-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: rgb(37, 99, 235);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 9999px;
    background-color: rgba(191, 219, 254, 0.6);
    color: rgb(30, 64, 175);
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.important-note-warning {
    background-image: linear-gradient(to right, rgba(254, 249, 195, 0.6), rgba(254, 240, 138, 0.6));
    border-left: 4px solid rgb(234, 179, 8);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.important-note-warning h3 {
    color: rgb(161, 98, 7);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.important-note-warning p {
    color: rgb(146, 64, 14);
    font-size: 0.9375rem;
}

.important-note-warning p:first-of-type {
    font-weight: 500;
}

.important-note-warning p + p {
    margin-top: 0.5rem;
}

/* Success and Error Messages */
@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.animate-fade {
    animation: fadeOut 5s forwards;
}

#success-message {
    background-color: rgba(240, 253, 244);
    border-left: 4px solid rgb(34, 197, 94);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

#success-message .text-green-500 {
    color: rgb(34, 197, 94);
}

#success-message .text-green-800 {
    color: rgb(22, 101, 52);
    font-weight: 500;
}

#success-message button {
    background-color: rgba(240, 253, 244);
    padding: 0.375rem;
    border-radius: 0.375rem;
    color: rgb(34, 197, 94);
    transition: background-color 0.2s;
}

#success-message button:hover {
    background-color: rgba(220, 252, 231);
}

#success-message button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.5);
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-field label {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(31 41 55);
}

.input-group {
    display: flex;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.input-group:focus-within {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.input-group-text {
    display: inline-flex;
    align-items: center;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-width: 1px 0 1px 1px;
    border-color: rgb(209 213 219);
    background-color: rgb(249 250 251);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: rgb(107 114 128);
}

.form-control {
    display: block;
    width: 100%;
    flex: 1 1 0%;
    border-radius: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-color: rgb(209 213 219);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: rgb(31 41 55);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: rgb(99 102 241);
    --tw-ring-color: rgb(99 102 241);
    outline: none;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: rgb(31 41 55);
}

/* Card Styles */
.card {
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: rgb(255 255 255);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/* Submit Button */
.submit-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border-width: 1px;
    border-color: transparent;
    background-color: rgb(99 102 241);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(255 255 255);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.submit-button:hover {
    background-color: rgb(79 70 229);
    transform: translateY(-1px);
}

.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Responsive Grid */
@media (min-width: 640px) {
    .sm\:col-span-4 {
        grid-column: span 4 / span 4;
    }
    
    .sm\:col-span-6 {
        grid-column: span 6 / span 6;
    }
    
    .sm\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:text-sm {
        font-size: 0.9375rem;
        line-height: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .lg\:w-64 {
        width: 16rem;
    }
    
    .lg\:flex-row {
        flex-direction: row;
    }
    
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
} 