/* Common styles for LK pages */
@import url('registration.css');

/* Common variables */
:root {
    --primary-blue: #3b7cff;
    --primary-blue-dark: #234a99;
    --text-dark: #37464f;
    --text-gray: #475569;
    --text-primary: #0F172A;
    --text_secondary: #475569;
    --white: #ffffff;
    --neutral_50: #F3F4F7;
    --neutral_300: #AEAEAE;
    --shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
}

/* Common fonts */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Gilroy-Semibold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-display: swap;
}

/* Common reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--neutral_50, #F3F4F7);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
