	.teco-ForgotPassword-Page-container {
	    background: #FFFFFF;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    padding: 20px;
	    font-family: 'Poppins', sans-serif;
	    min-height: 71vh;
	}

	.teco-ForgotPassword-Page-module {
	    width: 100%;
	    max-width: 1080px;
	    margin: 0 auto;
	    display: flex;
	    justify-content: center;
	}

	.teco-ForgotPassword-Page-content-wrapper {
	    width: 100%;
	    display: flex;
	    justify-content: center;
	}

	.teco-ForgotPassword-Page-card {
	    padding: 40px 50px;
	    width: 100%;
	    max-width: 1000px;
	    background: #FFFFFF;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	}

	.teco-ForgotPassword-Page-title {
	    color: var(--Secondary-800, #1F242E);
	    font-family: Poppins;
	    font-size: 3rem;
	    font-style: normal;
	    font-weight: 700;
	    line-height: 3.5rem;
	    margin-top: 0;
	    margin-bottom: 10px;
	    text-align: center;
	}

	.teco-ForgotPassword-Page-subtitle {
	    color: var(--Secondary-800, #1F242E);
	    font-family: Poppins;
	    font-size: 2.125rem;
	    font-style: normal;
	    font-weight: 600;
	    line-height: 3rem;
	    margin-bottom: 30px;
	    text-align: center;
	}

	.teco-ForgotPassword-Page-form {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	}

	.teco-ForgotPassword-Page-input-box {
	    display: flex;
	    width: 922px;
	    padding: 1.5rem;
	    flex-direction: column;
	    align-items: stretch;
	    gap: 0;
	    border-radius: 1.5rem;
	    background: var(--Tertiary-50, #E5F1FE);
	    backdrop-filter: blur(100px);
	    margin-bottom: 20px;
	    margin-left: auto;
	    margin-right: auto;
	    position: relative;
	}

	.teco-ForgotPassword-Page-form-row {
	    margin-bottom: 0;
	    position: relative;
	    width: 100%;
	    display: flex;
	    flex-direction: column;
	    gap: 0;
	}

	.teco-ForgotPassword-Page-input-container {
	    position: relative;
	    display: flex;
	    align-items: center;
	    width: 100%;
	}

	.teco-ForgotPassword-Page-input {
	    padding: 12px 15px 12px 45px;
	    border: none;
	    border-radius: 10px;
	    width: 100%;
	    height: 48px;
	    font-size: 16px;
	    background-color: #FFFFFF;
	    color: var(--color-secondary-800);
	    font-family: 'Poppins', sans-serif;
	    box-sizing: border-box;
	}

	.teco-ForgotPassword-Page-input:autofill,
	.teco-ForgotPassword-Page-input:-webkit-autofill {
	    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
	    -webkit-text-fill-color: var(--color-secondary-800) !important;
	    padding-left: 45px !important;
	    height: 48px !important;
	    -webkit-appearance: none !important;
	}

	.teco-ForgotPassword-Page-input:focus {
	    outline: none;
	}

	.teco-ForgotPassword-Page-input.invalid-email {
	    background-color: var(--Semantic-Error-100, #F6D0D6);
	    border: 2px solid var(--Semantic-Error-500, #E4514A);
	    border-radius: 10px;
	}

	.teco-ForgotPassword-Page-input.invalid-email:focus {
	    outline: none;
	}

	.teco-ForgotPassword-Page-input::placeholder {
	    color: #999999;
	}

	.teco-ForgotPassword-Page-input-icon {
	    position: absolute;
	    left: 15px;
	    width: 20px;
	    height: 20px;
	    color: #999999;
	    z-index: 1;
	}

	.teco-ForgotPassword-Page-submit-button {
	    display: flex;
	    min-width: 140px;
	    height: 52px;
	    padding: 16px;
	    justify-content: center;
	    align-items: center;
	    gap: 10px;
	    border-radius: 12px;
	    background: var(--Secondary-200, #B4BBC9);
	    color: #555555;
	    border: none;
	    font-size: 14px;
	    font-weight: 600;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    font-family: 'Poppins', sans-serif;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	    white-space: nowrap;
	    position: relative;
	    flex-shrink: 0;
	    align-self: flex-end;
	    margin-top: 1rem !important;
	}

	.teco-ForgotPassword-Page-submit-button:not(.disabled) {
	    background: var(--Primary-400, #61E437);
	    color: #FFFFFF;
	    border-radius: 12px;
	}

	.teco-ForgotPassword-Page-submit-button:disabled,
	.teco-ForgotPassword-Page-submit-button[disabled],
	.teco-ForgotPassword-Page-submit-button.disabled {
	    background: var(--Secondary-200, #B4BBC9);
	    color: #888888;
	    cursor: not-allowed;
	    opacity: 0.8;
	    border-radius: 12px;
	}

	.teco-ForgotPassword-Page-error-message {
	    display: block;
	    color: var(--Semantic-Error-500, #E4514A);
	    font-size: 13px;
	    font-weight: 600;
	    margin-top: 8px;
	    margin-bottom: 0;
	    letter-spacing: 0.3px;
	    text-transform: uppercase;
	    padding: 0 15px;
	    min-height: 18px;
	    line-height: 1.38;
	    visibility: hidden;
	    height: 18px;
	    text-align: left;
	}

	.teco-ForgotPassword-Page-error-message.show {
	    visibility: visible;
	}

	.teco-ForgotPassword-Page-success-message {
	    color: var(--color-success-500);
	    background-color: rgba(72, 202, 30, 0.1);
	    border: 1px solid var(--color-success-500);
	    border-radius: 4px;
	    padding: 10px;
	    margin-bottom: 20px;
	}

	.teco-ForgotPassword-Page-back-link {
	    display: block;
	    text-align: center;
	    margin-top: 20px;
	    color: #1F88D8;
	    text-decoration: none;
	    font-family: 'Poppins', sans-serif;
	    font-size: 14px;
	}

	.teco-ForgotPassword-Page-back-link:hover {
	    text-decoration: underline;
	}

	@media (max-width: 768px) {
	    .teco-ForgotPassword-Page-container {
	        padding: 15px;
	        align-items: center;
	        padding-top: 40px;
	    }

	    .teco-ForgotPassword-Page-card {
	        padding: 25px 20px;
	        align-items: center;
	    }

	    .teco-ForgotPassword-Page-title {
	        font-size: 2rem;
	        line-height: 2.5rem;
	        margin-bottom: 10px;
	    }

	    .teco-ForgotPassword-Page-subtitle {
	        font-size: 1.25rem;
	        line-height: 1.75rem;
	        margin-bottom: 25px;
	    }

	    .teco-ForgotPassword-Page-input-box {
	        width: 100%;
	        max-width: 100%;
	        padding: 1.25rem;
	        flex-direction: column;
	        align-items: stretch;
	        gap: 0;
	    }

	    .teco-ForgotPassword-Page-input {
	        font-size: 14px;
	        padding: 10px 12px 10px 40px;
	    }

	    .teco-ForgotPassword-Page-submit-button {
	        font-size: 12px;
	        flex-shrink: 0;
	        align-self: flex-end;
	    }
	}

	@media (max-width: 480px) {
	    .teco-ForgotPassword-Page-container {
	        padding: 10px;
	        padding-top: 20px;
	        align-items: center;
	        justify-content: center;
	    }

	    .teco-ForgotPassword-Page-module {
	        width: 100%;
	        display: flex;
	        justify-content: center;
	    }

	    .teco-ForgotPassword-Page-content-wrapper {
	        width: 100%;
	        display: flex;
	        justify-content: center;
	    }

	    .teco-ForgotPassword-Page-card {
	        padding: 20px 15px;
	        align-items: center;
	        max-width: 100%;
	        display: flex;
	        flex-direction: column;
	        align-items: center;
	    }

	    .teco-ForgotPassword-Page-title {
	        font-size: 1.5rem;
	        line-height: 2rem;
	        margin-bottom: 8px;
	        text-align: center;
	    }

	    .teco-ForgotPassword-Page-subtitle {
	        font-size: 0.95rem;
	        line-height: 1.4rem;
	        margin-bottom: 20px;
	        text-align: center;
	    }

	    .teco-ForgotPassword-Page-input-box {
	        width: 100%;
	        max-width: 100%;
	        padding: 1rem;
	        padding-top: 2rem;
	        flex-direction: column;
	        align-items: stretch;
	        gap: 0;
	        margin-left: auto;
	        margin-right: auto;
	        box-sizing: border-box;
	    }

	    .teco-ForgotPassword-Page-input {
	        font-size: 16px;
	        padding: 11px 12px 11px 45px;
	    }

	    .teco-ForgotPassword-Page-input-icon {
	        left: 12px;
	        width: 18px;
	        height: 18px;
	    }

	    .teco-ForgotPassword-Page-submit-button {
	        display: flex;
	        min-width: 140px;
	        height: 52px;
	        font-size: 11px;
	        letter-spacing: 0.3px;
	        flex-shrink: 0;
	        margin-left: 1rem;
	        margin-right: 1rem;
	        margin-top: 1rem;
	        justify-content: center;
	        align-items: center;
	        align-self: center;
	        border-radius: 12px;
	    }
	}