.employer-lookup-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 0 16px;
    box-sizing: border-box;
}

.employer-lookup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
    padding: 0 24px;
}

/* Hero Image Section */
.employer-lookup-hero {
    width: 100%;
    max-width: 550px;
    margin-bottom: 24px;
}

.employer-lookup-hero-image {
    width: 100%;
    display: block;
}

/* Logo */
.employer-lookup-logo {
    margin-bottom: 24px;
}

.employer-lookup-logo-svg {
    width: 200px;
    height: auto;
}

/* Heading */
.employer-lookup-heading {
    text-align: center;
    margin-bottom: 32px;
}

.employer-lookup-heading h1 {
    font-size: 24px;
    font-weight: 700;
    color: #14181a;
    margin: 0 0 12px 0;
}

.employer-lookup-heading p {
    font-size: 16px;
    color: #5a6872;
    margin: 0;
    line-height: 1.5;
}

/* Search */
.employer-lookup-search {
    width: 100%;
    margin-bottom: 24px;
}

.employer-lookup-search .MuiOutlinedInput-root {
    border-radius: 4px;
    background-color: #f5f5f5;
}

.employer-lookup-search .MuiOutlinedInput-notchedOutline {
    border-color: #e0e0e0;
}

.employer-lookup-search .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: #bdbdbd;
}

.employer-lookup-search .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #00bfa5;
}

.employer-lookup-search-icon {
    color: #757575;
}

/* Error */
.employer-lookup-error {
    color: #d32f2f;
    font-size: 14px;
    margin: 12px 0 0 0;
    line-height: 1.4;
    text-align: center;
}

/* Next Button */
.employer-lookup-actions {
    width: 100%;
    margin-bottom: 40px;
}

.employer-lookup-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: #00bfa5;
    color: #14181a;
}

.employer-lookup-button:hover {
    background-color: #00a88f;
}

.employer-lookup-button-primary {
    background-color: #00bfa5;
    color: #14181a;
}

.employer-lookup-button-primary:hover:not(:disabled) {
    background-color: #00a88f;
}

/* Footer Link */
.employer-lookup-footer {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: #5a6872;
}

.employer-lookup-link {
    background: none;
    border: none;
    color: #14181a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.employer-lookup-link:hover {
    color: #00bfa5;
}

/* Login Panel */
.employer-lookup-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.employer-lookup-login-heading {
    text-align: center;
    margin-bottom: 32px;
}

.employer-lookup-login-heading h1 {
    font-size: 24px;
    font-weight: 700;
    color: #14181a;
    margin: 0;
}

.employer-lookup-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}

.employer-lookup-login-form .MuiTextField-root {
    width: 100%;
}

.employer-lookup-login-form .MuiOutlinedInput-root {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.employer-lookup-forgot-password {
    text-align: right;
    margin-bottom: 24px;
    width: 100%;
}

.employer-lookup-forgot-password button {
    background: none;
    border: none;
    color: #14181a;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.employer-lookup-login-error {
    color: #d32f2f;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.employer-lookup-login-actions {
    width: 100%;
    margin-bottom: 16px;
}

.employer-lookup-login-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background-color: #00bfa5;
    color: #14181a;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.employer-lookup-login-button:hover {
    background-color: #00a88f;
}

.employer-lookup-signup-link {
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
    color: #5a6872;
}

.employer-lookup-signup-link button {
    background: none;
    border: none;
    color: #14181a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

/* App Store Badges */
.employer-lookup-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.employer-lookup-badges a {
    display: flex;
    align-items: center;
}

.employer-lookup-badges svg {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (min-width: 600px) {
    .employer-lookup-container {
        padding: 0 24px;
    }
}
