:root {
    --maroon-deep: #800000;
    --maroon-gradient: linear-gradient(135deg, #800000 0%, #4D0000 100%);
    --navy-blue: #000080;
    --blue-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --white: #ffffff;
    --soft-gray: #f4f7f6;
    --text-dark: #333333;
    --font-primary: 'Outfit', sans-serif;
    --font-cursive: 'Dancing Script', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--soft-gray);
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Side */
.side-left {
    flex: 1;
    background: var(--maroon-gradient);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    position: relative;
    color: var(--white);
    z-index: 10;
}

.top-content .branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.side-logo {
    height: 80px;
    width: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 10px;
}

.branding-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.branding-email {
    font-size: 0.9rem;
    opacity: 0.8;
}

.middle-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-watermark {
    max-width: 80%;
    opacity: 0.15;
    filter: brightness(0) invert(1);
}

.bottom-content .cursive-text {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
}

/* Right Side */
.side-right {
    flex: 1.5;
    position: relative;
    background-image: url('image/ftc_logo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.shape-1 {
    width: 150%;
    height: 200px;
    top: -50px;
    left: -20%;
    transform: rotate(-15deg);
}

.shape-2 {
    width: 150%;
    height: 300px;
    bottom: -100px;
    right: -20%;
    transform: rotate(-15deg);
}

.content-wrapper {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.college-header {
    color: var(--white);
    margin-bottom: 2rem;
}

.college-header h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.credentials {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

.credentials p {
    margin-top: 5px;
}

/* Login Box */
.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.login-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--maroon-deep);
    text-align: center;
    font-weight: 700;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--maroon-deep);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.login-btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    background: var(--blue-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

.login-utils {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.login-utils a {
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.login-utils a:hover {
    opacity: 1;
    color: var(--maroon-deep);
}

/* Footer */
.login-footer {
    margin-top: 3rem;
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--white);
    color: var(--maroon-deep);
}

.software-credit {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .side-left {
        display: none;
    }

    .side-right {
        flex: 1;
    }

    .content-wrapper {
        width: 90%;
    }
}