@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    /* overflow-x: hidden; */ /* Removing to avoid messing with site layout */
    /* background-color: #ffffff; */
}

/* Auth Container */
.auth-container {
    /* min-height: 100vh; */ /* Let the theme handle height */
}

/* Left Side Styling */
.left-panel {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-card {
    width: 100%;
    /* max-width: 420px; */ /* User might want it responsive */
}

.logo-placeholder {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

/* Social Buttons */
.btn-social {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-facebook {
    background-color: #3b5998;
    color: white;
    border: 1px solid #3b5998;
}
.btn-facebook:hover { background-color: #324b82; color: white; }

.btn-google {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}
.btn-google:hover { background-color: #f8f9fa; }

.btn-sso {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}
.btn-sso:hover { background-color: #f8f9fa; }

/* Form Controls */
.input-group-text {
    background: white;
    border-right: none;
    color: #6c757d;
}

.form-control {
    border-left: none;
    padding-left: 0;
    box-shadow: none !important;
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border-color: #86b7fe;
}

.btn-primary-custom {
    background-color: #e53e3e; /* Red color from screenshot */
    border-color: #e53e3e;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    width: auto;
    min-width: 120px;
}
.btn-primary-custom:hover {
    background-color: #c53030;
    border-color: #c53030;
}

.link-danger-custom {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.link-danger-custom:hover {
    text-decoration: underline;
    color: #c53030;
}

.auth-footer-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: center;
}

/* Right Side Styling */
.right-panel {
    background-color: #f3f5f9; /* Light gray-blue from screenshot */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    text-align: center;
}

.workspace-img {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.right-panel h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.right-panel p {
    color: #718096;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.see-tools-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.see-tools-link:hover {
    color: #2d3748;
}

/* Transition for Vue views */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .right-panel {
        display: none; /* Hide illustrative side on mobile to focus on login */
    }
    .auth-container {
        height: auto;
    }
    .left-panel {
        min-height: 100vh;
    }
}
