/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    min-height: 100vh;
}

/* Header/Navigation */
.top-nav {
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pzu-logo {
    height: 40px;
}

.brand-name {
    font-size: 20px;
    color: #262626;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
        background: none;
            color: #3498db;
            border: 2px solid #3498db;
            padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-button {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

/* Welcome Section */
.welcome-section {
    padding-top: 24px;
}

.welcome-section h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 600;
}

.app-info p {
    color: #595959;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.store-links {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.store-link {
    color: #0099ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-right: 20px;
}

.store-link::after {
    content: '›';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.app-preview {
    max-width: 400px;
}

.preview-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
}

.dot.active {
    background: #0099ff;
}

/* Login Section */
.login-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.login-container h2 {
    font-size: 24px;
    color: #262626;
    margin-bottom: 32px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #262626;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input {
width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #ced4da;
    outline: none;
    background: transparent;
}


.form-group input:hover,
input[type="email"]:hover,
input[type="password"]:hover {
border-bottom: 1px solid #0088cc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-group input:focus,
#userPassword:focus {
border-bottom: 1px solid #0088cc;
    outline: none;
        box-shadow: none;
}



.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8c8c8c;
    cursor: pointer;
    padding: 0;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0;
}

.forgot-password {
    color: #0099ff;
    text-decoration: none;
    font-size: 14px;
}

.login-button {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
        background: linear-gradient(45deg, #2980b9, #3498db);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.register-section {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.register-section p {
    color: #595959;
    font-size: 14px;
    margin-bottom: 8px;
}

.register-link {
    color: #0099ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.alert {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f5222d;
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-nav {
        padding: 0 16px;
        height: 56px;
    }

    .nav-right {
        display: none;
    }

    .main-container {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 24px auto;
        padding: 0 16px;
    }

    .welcome-section {
        text-align: center;
        padding-top: 0;
    }

    .welcome-section h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .store-links {
        justify-content: center;
        margin-bottom: 32px;
    }

    .app-preview {
        margin: 0 auto;
    }

    .login-section {
        padding: 24px 16px;
    }

    .form-actions {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        margin: 24px 0;
    }

    .forgot-password {
        text-align: center;
        order: 2;
    }

    .login-button {
        order: 1;
    }
}

.nav-button:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.store-link:hover {
    color: #008ae6;
}

.forgot-password:hover,
.register-link:hover {
    text-decoration: underline;
}

/* Focus States */
input:focus {
    outline: none;
    border-color: #0099ff;
    box-shadow: 0 0 0 2px rgba(0, 153, 255, 0.2);
}

.toggle-password:focus {
    outline: none;
    color: #0099ff;
}

/* Active States */
.login-button:active {
    background: #0077cc;
    transform: translateY(1px);
} 
