/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./css/style.css ***!
  \*****************************************************************/
/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation Bar */
header {
    background-color: #1a1a1d;
    padding: 20px 0;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo h1 {
    color: white;
    font-weight: 700;
}

.nav-links {
    list-style-type: none;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.signup-btn {
    background-color: #28a745;
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #218838;
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, #0366d6 30%, #1a1a1d 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    background-color: #218838;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Problem List Section */
.problems {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.problems h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.problem-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.problem-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.problem-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.problem-item button {
    background-color: #0366d6;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.problem-item button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #1a1a1d;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
/* Form Styles */
.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust for header/footer */
    background-color: #f4f4f4;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.signup-btn {
    width: 100%;
    background-color: #0366d6;
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #0056b3;
}
/* Form Styles */
.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust for header/footer */
    background-color: #f4f4f4;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.login-btn {
    width: 100%;
    background-color: #0366d6;
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #0056b3;
}
/* Dashboard Styles */
.dashboard {
    text-align: center;
    padding: 60px 20px;
}

.dashboard-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-links {
    margin-top: 20px;
}

/* Profile Styles */
.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust for header/footer */
}

.profile-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.profile-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.profile-container .form-group {
    margin-bottom: 20px;
}

.profile-container .form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.save-btn {
    width: 100%;
    background-color: #0366d6;
    color: white;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.save-btn:hover {
    background-color: #0056b3;
}
/* Logout Page Styles */
.logout-message {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust for header/footer */
    background-color: #f4f4f4;
}

.logout-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
}

.logout-container h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.logout-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.cta-btn {
    background-color: #0366d6;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}
/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ccc;
}

/* Problems Section Styles */
.problems-section {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.problem-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s ease-in-out;
}

.problem-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.problem-item h4 {
    font-size: 1.5em;
    color: #333;
    margin: 0;
}

.problem-item p {
    font-size: 1em;
    color: #666;
    margin: 8px 0;
}

.problem-item button {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.problem-item button:hover {
    background-color: #555;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
    font-size: 0.9em;
}
.profile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ccc;
}

/* Problem Panel Styles */
.problem-panel {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

.problem-panel h3, .problem-panel h4 {
    margin-top: 0;
}

/* Editor Panel Styles */
.editor-panel {
    flex: 2;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#code-editor {
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

#custom-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

button#run-code-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
}

button#run-code-btn:hover {
    background-color: #0056b3;
}

/* Output Section */
pre#output {
    background-color: #f8f8f8;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 1rem;
    white-space: pre-wrap;
}
/*updated*/
/* Pricing Plan Styles */
.pricing-container {
    text-align: center;
    margin: 50px auto;
}

.pricing-title {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: #333;
}

.pricing-subtitle {
    margin-bottom: 2em;
    color: #555;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.plan {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plan h2 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
    color: #333;
}

.plan .price {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #0366d6;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5em;
}

.plan li {
    margin: 0.5em 0;
    color: #666;
}

.plan .btn {
    background-color: #0366d6;
    color: #fff;
    border: none;
    padding: 0.8em 2em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.plan .btn:hover {
    background-color: #0056b3;
}

.popular {
    border: 2px solid #0366d6;
}

.popular .btn {
    background-color: #0056b3;
}

.popular .btn:hover {
    background-color: #004494;
}
/* Payment Page Container */
.payment-container {
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.payment-title {
    font-size: 24px;
    margin-bottom: 1em;
    color: #333;
    flex-basis: 100%;
}

.payment-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.form-section {
    flex: 1 1 45%; /* Adjust to take 45% width for responsive design */
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.payment-cards {
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
}

.submit-btn {
    width: 100%;
    background-color: #28a745;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}



/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
    font-size: 0.9em;
}



