/* /Components/Login/GoogleSignIn.razor.rz.scp.css */
.google-btn[b-ex4iewh6y2] {
    display: flex;
    align-items: center;
    width: 200px; /* Adjust width as needed */
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    font-family: 'Roboto', sans-serif;
}

    .google-btn:hover[b-ex4iewh6y2] {
        background-color: #f8f9fa;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.google-icon-wrapper[b-ex4iewh6y2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-right: 1px solid #dadce0;
}

.google-icon[b-ex4iewh6y2] {
    width: 18px;
    height: 18px;
}

.btn-text[b-ex4iewh6y2] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3c4043;
    font-size: 14px;
    font-weight: 500;
}

    .btn-text span[b-ex4iewh6y2] {
        padding: 0 12px;
    }
/* /Layout/Footer.razor.rz.scp.css */
.footer[b-pav88zdmax] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #000f; /* Dark black-gray */
    border-top: 1px solid #374151;
    color: #d1d5db;
    width: 100%;
}

.info[b-pav88zdmax] {
    padding: 0 1rem;
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.divider[b-pav88zdmax] {
    width: 1px;
    height: 50px;
    background: #4b5563; /* Gray divider */
}

h3[b-pav88zdmax] {
    font-size: 1rem;
    font-weight: bold;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

p[b-pav88zdmax], a[b-pav88zdmax] {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.2rem 0;
}

a[b-pav88zdmax] {
    color: #a78bfa; /* Purple accent */
    text-decoration: none;
}

    a:hover[b-pav88zdmax] {
        color: #4c1d95;
    }

@media (max-width: 600px) {
    .footer[b-pav88zdmax] {
        flex-direction: column;
        gap: 1rem;
    }

    .divider[b-pav88zdmax] {
        width: 60%;
        height: 1px;
        background: #4b5563;
    }

    .info[b-pav88zdmax] {
        max-width: 100%;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-u9bjn9oidl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.industrial-background[b-u9bjn9oidl] {
    background-color: #2b2b2b; /* Dark background color */
    background-image: linear-gradient(45deg, #141414 25%, transparent 25%, transparent 75%, #141414 75%, #141414), /* Diagonal stripes */
    linear-gradient(45deg, #141414 25%, transparent 25%, transparent 75%, #141414 75%, #141414); /* Another set of diagonal stripes */
    /*background-size: 20px 20px;*/ /* Size of the stripes */
    flex: 1;
    border: 1px solid #333; /* Border to give a metallic look */
    color: white; /* Text color */
    padding: 20px; /* Padding for content */
    text-align: center; /* Center-align text */
}
/* /Layout/TopBar.razor.rz.scp.css */

.top-bar[b-255yrv8013] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #000000; /* Dark black-gray */
    border-bottom: 1px solid #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-placeholder[b-255yrv8013] {
    width: 24px;
    height: 24px;
}

.login-button[b-255yrv8013] {
    background: #374151;
    border: 1px solid #4b5563;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .login-button svg[b-255yrv8013] {
        color: white;
        transition: color 0.3s ease;
    }

    .login-button:hover[b-255yrv8013] {
        background: #3b82f6;
        border-color: #3b82f6;
    }

    .login-button:hover svg[b-255yrv8013] {
        color: #ffffff;
    }

/* /Pages/Login.razor.rz.scp.css */

.container[b-x9x3v535pu] {
    display: flex;
    align-items: start;
    justify-content: center;
}

.card[b-x9x3v535pu] {
    background-color: #141414; /* Darker card background */
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 400px;
}

.title[b-x9x3v535pu] {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #e5e7eb; /* Light gray text */
    margin-bottom: 1.5rem;
}

.error-message[b-x9x3v535pu] {
    background-color: #4b1c1c; /* Dark red background */
    border: 1px solid #b91c1c;
    color: #f87171; /* Lighter red text */
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.form-group[b-x9x3v535pu] {
    margin-bottom: 1rem;
}

.form-label[b-x9x3v535pu] {
    display: block;
    color: #d1d5db; /* Light gray label */
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input[b-x9x3v535pu] {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #6b7280; /* Gray border */
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    background-color: #4b5563; /* Dark input background */
    color: #e5e7eb; /* Light input text */
}

.form-input:focus[b-x9x3v535pu] {
    border-color: #3b82f6; /* Blue focus border */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.validation-message[b-x9x3v535pu] {
    color: #f87171; /* Red validation text */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.btn-primary[b-x9x3v535pu] {
    width: 100%;
    background-color: #3b82f6; /* Blue button */
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-primary:hover[b-x9x3v535pu] {
        background-color: #2563eb; /* Darker blue on hover */
    }

.btn-secondary[b-x9x3v535pu] {
    width: 100%;
    background: none;
    border: none;
    color: #60a5fa; /* Lighter blue link */
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    text-decoration: none;
}

    .btn-secondary:hover[b-x9x3v535pu] {
        text-decoration: underline;
    }

.btn-register[b-x9x3v535pu] {
    width: 100%;
    background-color: #009900; /* Green button */
    color: #e5e7eb;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-register:hover[b-x9x3v535pu] {
        background-color: #16a34a; /* Darker green on hover */
    }
