/* Base */
.easey-container {
    margin: -20px -20px -40px 0;
    margin-left: -20px;
    width: calc(100% + 40px);
    min-height: 100vh;
    background: #fcfcfd; /* gray-25 */
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    letter-spacing: 0.025em;
}

/* Header */
.easey-header {
    position: sticky;
    top: 32px;
    background: white;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e7ec; /* gray-200 */
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    z-index: 1000;
}

.easey-header-left {
    display: flex;
    align-items: center;
}

.easey-logo {
    height: 32px;
    width: auto;
}

/* Main Content */
.easey-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.easey-main-content {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e4e7ec; /* gray-200 */
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    padding: 2rem;
}

/* Typography */
.easey-welcome-section {
    margin-bottom: 2.5rem;
}

.easey-welcome-section h2 {
    color: #101828; /* gray-900 */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.easey-welcome-section p {
    color: #475569; /* gray-600 */
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.easey-form-group h3 {
    color: #1d2939; /* gray-800 */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Form Elements */
.easey-form-group {
    margin-bottom: 2rem;
}

.easey-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: white;
    border: 1px solid #d0d5dd; /* gray-300 */
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: #101828; /* gray-900 */
    transition: all 0.2s ease;
}

.easey-input::placeholder {
    color: #98a2b3; /* gray-400 */
}

.easey-input:focus {
    outline: none;
    border-color: #4d93df; /* primary-500 */
    box-shadow: 0 0 0 4px rgba(77, 147, 223, 0.1); /* primary-500 with opacity */
}

/* Button */
.easey-button {
    padding: 0.625rem 1rem;
    background: #3577bd; /* primary-600 */
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.easey-button:hover {
    background: #215c9b; /* primary-700 */
}

.easey-button:active {
    background: #072e57; /* primary-900 */
}

/* Sidebar */
.easey-sidebar {
    position: sticky;
    top: calc(32px + 73px);
}

.easey-sidebar-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e4e7ec; /* gray-200 */
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.easey-sidebar-content h3 {
    color: #1d2939; /* gray-800 */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.easey-video {
    width: 100%;
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .easey-content {
        grid-template-columns: 1fr;
    }

    .easey-sidebar {
        position: static;
    }
}

@media screen and (max-width: 782px) {
    .easey-container {
        margin: 0;
        width: 100%;
    }

    .easey-header {
        padding: 1rem;
    }

    .easey-content {
        padding: 1rem;
    }
}
