/* Redirect welcome page css start */

.varimo-welcome {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.varimo-header {
    background: linear-gradient(135deg, #040C47 0%, #1a237e 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.varimo-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6033E7, #8c64f5);
}

.varimo-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.3;
}

.varimo-header p {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 0;
}

.varimo-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e1e1e1;
}

.varimo-form-group {
    margin-bottom: 25px;
}

.varimo-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #23282d;
    font-size: 14px;
}

.varimo-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.varimo-input:focus {
    border-color: #6033E7;
    box-shadow: 0 0 0 3px rgba(96, 51, 231, 0.1);
    outline: none;
}

.varimo-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.varimo-btn {
    flex: 1;
    padding: 15px 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.varimo-btn-primary {
    background: linear-gradient(135deg, #6033E7 0%, #8c64f5 100%);
    color: white;
}

.varimo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 51, 231, 0.4);
}

.varimo-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e1e1e1;
}

.varimo-btn-secondary:hover {
    background: #e9ecef;
    border-color: #6c757d;
}

.varimo-btn-dashboard {
    background: #040C47;
    color: white;
}

.varimo-btn-dashboard:hover {
    background: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 12, 71, 0.4);
}

.varimo-btn a {
    color: inherit;
    text-decoration: none;
    display: block;
    box-shadow: none;
}

.webcartisan-another-plugins {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
}

.varimo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.varimo-feature {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #6033E7;
    transition: all 0.3s ease;
}

.varimo-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.varimo-feature h3 {
    margin: 0 0 10px 0;
    color: #23282d;
    font-size: 1.1em;
}

.varimo-feature p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.varimo-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
}

.varimo-section-title {
    color: #040C47;
    border-bottom: 2px solid #6033E7;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .varimo-buttons {
        flex-direction: column;
    }

    .varimo-header {
        padding: 30px 20px;
    }

    .varimo-content {
        padding: 30px 20px;
    }

    .varimo-features {
        grid-template-columns: 1fr;
    }
}

/* Redirect welcome page css end */
