/* Custom Utility Classes - Extensions to Bootstrap */
/* Only includes utilities not provided by Bootstrap 5 */

/* Custom Font Sizes - Bootstrap doesn't have these exact sizes */
.text-icon-lg {
    font-size: 64px;
}

/* Custom Line Heights - Bootstrap has limited line-height utilities */
.line-height-normal {
    line-height: 1.4;
}

.line-height-relaxed {
    line-height: 1.6;
}

.line-height-loose {
    line-height: 1.8;
}

/* Custom Link Styles */
.link-nostyle {
    text-decoration: none;
}

.link-nostyle:hover {
    text-decoration: none;
}

.link-hover-underline:hover {
    text-decoration: underline;
}

/* Custom Max Widths - Specific to login/form components */
.max-w-sm {
    max-width: 440px;
}

.max-w-md {
    max-width: 600px;
}

.max-w-lg {
    max-width: 800px;
}
