/* Login Screen Styles */
.wptp-login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.wptp-login-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.wptp-login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.wptp-login-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
}

.wptp-login-box {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.wptp-login-box h1 {
    margin: 0 0 16px 0;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.wptp-login-box p {
    margin: 0 0 32px 0;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.wptp-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wptp-form-group {
    text-align: left;
}

.wptp-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.wptp-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wptp-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wptp-input::placeholder {
    color: #999;
}

.wptp-login-button {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-top: 12px;
}

.wptp-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: #fff;
    text-decoration: none;
}

.wptp-login-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .wptp-login-box {
        padding: 40px 30px;
    }
    
    .wptp-login-box h1 {
        font-size: 28px;
    }
    
    .wptp-login-box p {
        font-size: 16px;
    }
    
    .wptp-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}
