.lostpassword-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.lostpassword-container {
    width: 100%;
    max-width: 450px;
}

.lostpassword-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.lostpassword-header {
    padding: 6px 6px 3px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    color: #000;
}

.lostpassword-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lostpassword-logo-img {
    max-width: 120px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

.lostpassword-logo .custom-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lostpassword-logo .custom-logo-link img {
    max-width: 120px;
    max-height: 60px;
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

.lostpassword-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 1;
    color: #000;
}

.lostpassword-title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
}

.lostpassword-desc {
    margin: 0;
    font-size: 0.9rem;
    opacity: 1;
    color: #333;
}

.lostpassword-body {
    padding: 2rem;
}

.lostpassword-message {
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
}

.lostpassword-message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.lostpassword-message.success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.lostpassword-form {
    margin: 0;
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
}

.input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
    z-index: 1;
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-input:focus + .input-icon,
.input-box:focus-within .input-icon {
    color: #ff6600;
}

.submit-row {
    margin-bottom: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-row {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

.login-link {
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
}

.login-link:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .lostpassword-page {
        padding: 6px;
    }
    
    .lostpassword-header {
        padding: 1.5rem 1.5rem 0.75rem;
    }
    
    .lostpassword-logo-img,
    .lostpassword-logo .custom-logo-link img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .lostpassword-logo-text {
        font-size: 1.25rem;
    }
    
    .lostpassword-body {
        padding: 1.5rem;
    }
}
