﻿

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}



.header {
    margin-bottom: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.cpaas-badge {
    background: #e8f0fe;
    color: #1565c0;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.login-title {
    font-size: 32px;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #6c757d;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 16px;
    color: #495057;
    outline: none;
    transition: border-color 0.3s ease;
}

    .form-input:focus {
        border-bottom-color: #1565c0;
    }

    .form-input::placeholder {
        color: #fff;
    }

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    color: #6c757d;
    cursor: pointer;
    z-index: 2;
}

.login-button {
    width: 100%;
    padding: 16px;
    background: #1565c0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 32px;
}

    .login-button:hover {
        background: #0d47a1;
    }

.forgot-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.forgot-link {
    color: #1565c0;
    text-decoration: none;
    font-size: 14px;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

.support-info {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 40px;
}

.support-email {
    color: #1565c0;
    text-decoration: none;
}

    .support-email:hover {
        text-decoration: underline;
    }

.formerly {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-top: auto;
}

.pepipost {
    color: #e91e63;
    font-weight: 600;
}

/* Right Panel - Promotional Content */
.promo-panel {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 60px;
    display: flex;
    flex-direction: column;
    color: white;
}

    .promo-panel::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, #0d7377 50%, #14a085 100%);
        opacity: 0.8;
    }

.promo-content {
    position: relative;
    z-index: 2;
}

.partnership {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.partner-section {
    text-align: center;
}

.partner-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.Vishwnet-logo {
    color: #ff6b35;
}

.unbxd-logo {
    color: #14a085;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unbxd-icon {
    width: 32px;
    height: 32px;
    background: #14a085;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.partner-description {
    font-size: 14px;
    color: #b0bec5;
    max-width: 200px;
}

.plus-icon {
    font-size: 24px;
    color: white;
    font-weight: 300;
}

.main-headline {
    font-size: 36px;
    font-weight: 700;
    color: #ffa726;
    margin-bottom: 60px;
    line-height: 1.2;
}

.news-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.news-headline {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-content {
    font-size: 16px;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 20px;
}

.know-more {
    color: #42a5f5;
    text-decoration: none;
    font-weight: 500;
}

    .know-more:hover {
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .login-panel {
        max-width: none;
        padding: 40px 40px;
    }

    .promo-panel {
        padding: 40px;
    }

    .main-headline {
        font-size: 28px;
    }

    .news-headline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .login-panel {
        padding: 30px 20px;
    }

    .promo-panel {
        padding: 30px 20px;
    }

    .partnership {
        flex-direction: column;
        gap: 16px;
    }

    .main-headline {
        font-size: 24px;
    }

    .news-section {
        padding: 24px;
    }
}
