/* Webinar Tracker Registration Form Styles */

.wt-registration-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.wt-webinar-title {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.2;
}

.wt-host-info {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.wt-host-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ddd;
}

.wt-host-name {
    font-size: 16px;
    color: #555;
}

.wt-host-name strong {
    color: #333;
}

.wt-form {
    background: white;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.wt-form p {
    margin-bottom: 20px;
}

.wt-form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.wt-form input[type="text"], 
.wt-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.wt-form input[type="text"]:focus, 
.wt-form input[type="email"]:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.wt-register-button {
    background-color: var(--button-color, #007cba);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.wt-register-button:hover {
    opacity: 0.9;
    filter: brightness(1.1);
}

.wt-register-button:active {
    transform: translateY(1px);
}

/* Responsive design */
@media (max-width: 600px) {
    .wt-registration-form {
        margin: 10px;
        padding: 20px;
    }
    
    .wt-webinar-title {
        font-size: 24px;
    }
    
    .wt-form {
        padding: 20px;
    }
}
