* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Museo Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.left-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #003366;
    color: white;
    padding: 150px 40px 60px 0;
    display: flex;
    flex-direction: column;
    z-index: 0;
    overflow: hidden;
}

.decorative-c {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -190px;
    right: 0px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05));
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}

.logo {
    margin-bottom: 100px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 0;
    padding-left: 120px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo span {
    font-size: 32px;
    font-weight: 300;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.welcome-text {
    z-index: 1;
    padding-left: 120px;
}

.welcome-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 400;
}

.welcome-text p {
    font-size: 26px;
    line-height: 1.6;
    max-width: 450px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: #009CA5;
    margin-top: 30px;
}

.right-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/splash.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 50% 100%, 50% 50%);
    z-index: 1;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.login-card h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.login-card .subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.user-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.user-type-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.user-type-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper svg,
.icon-wrapper img {
    width: 35px;
    height: 35px;
    fill: white;
    filter: brightness(0) invert(1);
}

.administrators .icon-wrapper {
    background: #009CA5;
}

.teachers .icon-wrapper {
    background: #FF8A3D;
}

.students .icon-wrapper {
    background: #7C57CB;
}

.parents .icon-wrapper {
    background: #D62599;
}

.user-type-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.administrators h3 {
    color: #009CA5;
}

.teachers h3 {
    color: #FF8A3D;
}

.students h3 {
    color: #7C57CB;
}

.parents h3 {
    color: #D62599;
}

.user-type-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.arrow {
    width: 20px;
    height: 20px;
}

.administrators .arrow {
    fill: #009CA5;
}

.teachers .arrow {
    fill: #FF8A3D;
}

.students .arrow {
    fill: #7C57CB;
}

.parents .arrow {
    fill: #D62599;
}

@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }

    .left-panel {
        padding: 40px;
    }

    .user-types {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        flex-direction: column;
    }

    .left-panel {
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        order: 1;
    }

    .left-panel::before {
        display: none;
    }

    .decorative-c {
        display: none;
    }

    .logo {
        margin-bottom: 40px;
        padding-left: 20px;
        gap: 15px;
    }

    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 20px;
        padding-left: 15px;
    }

    .welcome-text {
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .welcome-text h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .welcome-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .accent-line {
        width: 60px;
        height: 3px;
        margin-top: 20px;
    }

    .right-panel {
        display: none;
    }

    .login-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
        order: 2;
    }

    .login-card h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .login-card .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .user-types {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .user-type-card {
        padding: 25px 20px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .icon-wrapper svg,
    .icon-wrapper img {
        width: 30px;
        height: 30px;
    }

    .user-type-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .user-type-card p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .arrow {
        width: 18px;
        height: 18px;
    }
}
