/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Raleway:ital,wght@0,400;0,600;1,400&display=swap');

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f6f6f6;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #1a1a1a;
}

/* Flex Container */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f6f6f6;
    width: 100%;
}

/* Layout Spacing */
.margin,
.spacing {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-top: 80px;
    padding-bottom: 30px;
}

/* Inner Divs */
.innerdivleft,
.innerdivright {
    flex-basis: 400px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    margin: 10px;
}

/* Footer */
.footerdiv {
    background-color: #ffffff;
    font-size: 14px;
    text-align: center;
    color: #a0a3ab;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Text Styles */
.title {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 10px;
    letter-spacing: -0.5px;
}

.bigtext {
    font-size: 24px;
    font-weight: 600;
}

.standardtext {
    font-size: 18px;
    font-weight: 400;
}

.smalltext {
    font-size: 14px;
    font-weight: 400;
}

/* Emphasis Text */
.bluetext {
    color: #621CCD;
    font-weight: 600;
}

.redtext {
    color: #d32f2f;
    font-weight: 600;
}

/* Monospace Alerts */
.passwordtext,
.warningtext {
    font-family: 'Raleway', monospace;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

/* Utility */
.unselectable {
    user-select: none;
}

/* Links */
.link {
    text-decoration: none;
    font-size: 16px;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.link:hover {
    color: #621CCD;
}

/* Responsive Typography for Recall Text */
.texrecall {
    display: block;
    font-size: 28px;
    width: 100%;
    max-width: 350px;
}

/* Media Queries */
@media only screen and (max-width: 620px) {
    .title {
        font-size: 26px;
    }

    .bigtext {
        font-size: 20px;
    }

    .standardtext {
        font-size: 16px;
    }

    .smalltext {
        font-size: 14px;
    }

    .passwordtext {
        font-size: 22px;
    }

    .warningtext {
        font-size: 18px;
    }
}
