/* Define the regular variant */
@font-face {
    font-family: 'IBMPlexMono';  /* Same name for all variants */
    src: url('/assets/fonts/IBMPlexMono-Regular.ttf') format('truetype');
    font-weight: 400;  /* Normal/regular weight */
    font-style: normal;
    font-display: block;
}

/* Define the bold variant */
@font-face {
    font-family: 'IBMPlexMono';
    src: url('/assets/fonts/IBMPlexMono-Bold.ttf') format('truetype');
    font-weight: 700;  /* Bold weight */
    font-style: normal;
    font-display: block;
}

/* Define the italic variant */
@font-face {
    font-family: 'IBMPlexMono';
    src: url('/assets/fonts/IBMPlexMono-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: block;
}

/* Define bold-italic if available */
@font-face {
    font-family: 'IBMPlexMono';
    src: url('/assets/fonts/IBMPlexMono-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: block;
}

.heavy {
    color: #4a4a4a;
    font-weight: bold;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 2.5rem;
    padding-bottom: 20px;
    color: #474747;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    line-height: 1.5em;
    color: #4a4a4a;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    display: flex;
    min-height: 500px;
}

.image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-section img {
    max-width: 100%;
    max-height: 80%;
    border-radius: 10px;
    object-fit: cover;
}

.form-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;

    justify-content: center;
}

.form-section h2 {
    font-size: 2.5rem;
    padding-bottom: 20px;
    color: #474747;
}

.form-section p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 95%;
    }

    .image-section {
        padding: 20px;
        min-height: 200px;
    }

    .form-section {
        padding: 40px 30px;
    }

    .form-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 30px 20px;
    }

    .form-section h2 {
    font-size: 1.8rem;
    }
}
